반응형


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!";
}




반응형

+ Recent posts