<html>
<head>
<title>PHPMailer - SMTP (Gmail) basic test</title>
</head>
<body>
<?php
require 'Mailer/class.phpmailer.php';
$mail = new PHPMailer;
$mail->IsSMTP(); // Set mailer to use SMTP
$mail->host = 'stmp.gmail.com'; // smtp 주소
$mail->Port=587;
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Password = 'password'; // SMTP password 메일 접속 시 비밀번호
$mail->SMTPSecure = 'ssl'; // Enable encryption, 'ssl' also accepted
$mail->FromName = 'Mailer'; //보내는 사람 이름
// Name is optional 받는 사람 이메일 주소만
$mail->IsHTML(true); // Set email format to HTML 메일을 보낼 때 html 형식으로 메일을 보낼 경우 true
$mail->Subject = 'Here is the subject'; //메일 주소
$mail->Body = 'This is the HTML message body <B>in bold!</B>'; //메일 본문
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; // 메일 본문을 오로지 텍스트 형식으로만 보낼 때
if(!$mail->Send())
{
echo '보낼수 없음.';
echo 'Mailer Error: ' . $mail->ErrorInfo; // 메일 전송에 실패 했을 경우 뜨는 에러 메세지
exit;
}
echo 'Message has been sent';
?>
</html>
소스는 이렇게 되는데
에러가
Mailer Error: The following From address failed: @gmail.com : Called Mail() without being connected
라고 뜨네요.. 어디가 문제일까요......하루종일 이것만하네요...