반응형
php 소스에서
wroksmobile의 smtp 서버를 이용하여 메일을 발송하는 소스입니다.
SMTPDebug의 값을 2로 설정하면 디버깅이 가능합니다.
//Create a new PHPMailer instance
$mail = new PHPMailer;
$mail->SMTPSecure = 'ssl';
$mail->isSMTP();
$mail->SMTPDebug = 0;
$mail->Debugoutput = 'html';
$mail->Host = 'smtp.worksmobile.com';
$mail->Port = 465;
$mail->SMTPAuth = true;
$mail->Username = "이메일 계정";
$mail->Password = "이메일 패스워드";
$mail->setFrom('발송 이메일', '발송자명');
$mail->addAddress('수신 이메일', '수신자명');
$mail->Subject = 'PHPMailer GMail SMTP test';
$mail->msgHTML("abcd", dirname(__FILE__));
$mail->AltBody = 'This is a plain-text message body';
//send the message, check for errors
if (!$mail->send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
반응형
'PHP' 카테고리의 다른 글
apm 설치 후 그누보드 @set_time_limit 무한루프 (0) | 2020.04.12 |
---|---|
codeigniter 에서 메일이 깨지는 이유 (0) | 2019.05.23 |
PHP IE에서 한글 파일명 다운로드시 깨짐 현상 (0) | 2018.09.18 |
phpstorm 에서 프로젝트와 서버 호스팅 연결하기 (0) | 2018.08.28 |
Codeigniter에서 htaccess 파일로 https 항상 연결하기 (0) | 2018.08.13 |