위키 메일 발송 설정
이민 (토론 | 기여)님의 2024년 7월 23일 (화) 01:19 판 (새 문서: * 이런 저런 설정으로도 잘 안된다면 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", ...)
- 이런 저런 설정으로도 잘 안된다면 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" ]; |
||