"위키 메일 발송 설정"의 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
(새 문서: * 이런 저런 설정으로도 잘 안된다면 swiftmailer를 이용해보자 ** https://www.mediawiki.org/wiki/Extension:SwiftMailer * 링크의 파일을 다운로드 받고 extensions 폴더에 넣어준 후 아래와 같이 설정하면 된다. {| class="wikitable" |+ !extension.json !"config": { "SMTPAuthenticationMethod": { "value": "tls" } }, ! ! |- |LocalSettings.php |$wgSMTP = [ 'host'=> "smtp.yoursmtp.org", 'IDHost' => "yourhost.org", ...) |
|||
5번째 줄: | 5번째 줄: | ||
{| class="wikitable" | {| class="wikitable" | ||
|+ | |+ | ||
|extension.json | |||
|"config": { | |||
"SMTPAuthenticationMethod": { | "SMTPAuthenticationMethod": { | ||
"value": "tls" | "value": "tls" | ||
} | } | ||
}, | }, | ||
|- | |- | ||
|LocalSettings.php | |LocalSettings.php | ||
32번째 줄: | 30번째 줄: | ||
]; | ]; | ||
|} | |} |
2024년 7월 23일 (화) 01:21 판
- 이런 저런 설정으로도 잘 안된다면 swiftmailer를 이용해보자
- 링크의 파일을 다운로드 받고 extensions 폴더에 넣어준 후 아래와 같이 설정하면 된다.
extension.json | "config": {
"SMTPAuthenticationMethod": { "value": "tls" } }, |
LocalSettings.php | $wgSMTP = [
'host'=> "smtp.yoursmtp.org", 'IDHost' => "yourhost.org", 'port' => 587, 'auth' => true, 'username' => "yourSMTPusername", 'password' => "yourSMTPpassword" ]; |