728x90
반응형
■ PHP PHPMailer를 이용한 메일 전송하기 - SMTP
■ 사용법
SMTP 서버 이용 시 메일 자체가 정크메일 또는 스팸으로 빠지는 것을 방지할 수 있음
<?php
require 'vendor/phpmailer/phpmailer/PHPMailerAutoload.php';
$mail = new PHPMailer(true);
$mail->isSMTP();
$mail->Host = 'smtp.office365.com';
$mail->Port = 587;
$mail->SMTPSecure = 'tls';
$mail->SMTPAuth = true;
$mail->Username = 'somebody@somewhere.com';
$mail->Password = 'YourOffice365Password';
$mail->SetFrom('somebody@somewhere.com', 'FromEmail');
$mail->addAddress('recipient@domain.com', 'ToEmail');
//$mail->SMTPDebug = 3;
//$mail->Debugoutput = function($str, $level) {echo "debug level $level; message: $str";};
//$mail->Debugoutput = 'echo';
$mail->IsHTML(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 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent';
}
?>
■ 인코딩
한글 깨짐 현상으로 인한 인코딩 처리
$mail -> CharSet = "utf-8";
728x90
반응형
'PHP' 카테고리의 다른 글
[PHP] php_writeexcel 이용 .xls 파일 생성 (0) | 2022.02.17 |
---|---|
[PHP] Cannot modify header information - headers already sent by - error 해결 방법 (0) | 2022.02.09 |
[PHP] SMTP 전송을 이용한 이메일 발송(office365) (0) | 2022.01.27 |
[php] PHP에서 JSON POST 데이터 받기, file_get_contents (0) | 2022.01.17 |
[PHP] POST input 값 전송 시 데이터 잘림, max_input_vars (0) | 2022.01.13 |