반응형
php에서 이메일을 보낼 수 있는 방법은 가장 대중적인 라이브러리는 'php mailer'이다.
물론 php 내장 함수인 mail도 있지만 내부에 메일서버(smtp서버)가 구축되어 있어야 한다.
https://www.php.net/manual/en/function.mail.php
PHPMailer
PHPMailer를 통해서 smtp서버가 없더라도 메일 서비스하는 업체(지메일, 다음, 네이버)의 smtp를 사용하여 이메일을 보낼 수 있다.
https://github.com/PHPMailer/PHPMailer
설치 및 사용방법은 git에 자세히 설명되어 있다.
<?php
// Import PHPMailer classes into the global namespace
// These must be at the top of your script, not inside a function
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use PHPMailer\PHPMailer\Exception;
// Load Composer's autoloader
require 'vendor/autoload.php';
// Instantiation and passing `true` enables exceptions
$mail = new PHPMailer(true);
try {
//Server settings
$mail->SMTPDebug = SMTP::DEBUG_SERVER; // Enable verbose debug output
$mail->isSMTP(); // Send using SMTP
$mail->Host = 'smtp1.example.com'; // Set the SMTP server to send through
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'user@example.com'; // SMTP username
$mail->Password = 'secret'; // SMTP password
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; // Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged
$mail->Port = 587; // TCP port to connect to, use 465 for `PHPMailer::ENCRYPTION_SMTPS` above
//Recipients
$mail->setFrom('from@example.com', 'Mailer');
$mail->addAddress('joe@example.net', 'Joe User'); // Add a recipient
$mail->addAddress('ellen@example.com'); // Name is optional
$mail->addReplyTo('info@example.com', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');
// Attachments
$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
// Content
$mail->isHTML(true); // Set email format to HTML
$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';
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
메일서버가 없다면 현재 사용하고 있는 메일 서비스를 활용하면 된다.
gmail
https://support.google.com/a/answer/176600?hl=ko
네이버 메일
https://mail.naver.com/option/imap
다음 메일
https://cs.daum.net/faq/43/9234.html#35953
네이버 지메일 다음 모두 사용 port는 465이며 host 정보만 각각 smtp.naver.com, smtp.gmail.com, smtp.daum.net이다.
반응형
'Program > Php' 카테고리의 다른 글
로컬 개발환경(윈도 + php + 아파치 )에 apcu 설정 추가하기 (0) | 2020.07.16 |
---|---|
php date 한국시간 설정하기 (0) | 2020.07.16 |
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 46137376 bytes) in C:\Apache24\htdocs\test\api\test.php on line 19 해결 방법 (0) | 2020.05.27 |
mp4 mp3 등 오디오 비디오 파일 재생시간 추출하기 (0) | 2020.05.19 |
입력 받은 날짜에 대한 남은 날짜 시 분 출력하기 php (0) | 2018.04.07 |