구글메일사용ㅜㅜ
본문
윈도우서버에서 메일서버말고
구글메일을 사용하려구요 ,,
config.php 이렇게 수정후에
mailer.php
$mail = new PHPMailer(); // defaults to using php "mail()"
if (defined('G5_SMTP') && G5_SMTP) {
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = G5_SMTP; // SMTP server
$mail->Port = 465; // set the SMTP port
$mail->IsSMTP();
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port for the GMAIL server
$mail->Username = "아이디"; // GMAIL username
$mail->Password = "비번"; // GMAIL password
아이디 비번부분 잘 작성했는데 메일발송이 전혀 안됩니다..
다른 부분또 수정할곳이있나요?
답변 1
http://www.web-development-blog.com/archives/send-e-mail-messages-via-smtp-with-phpmailer-and-gmail/
여기를 참고하시고 소스랑 비교해보시는게