gmail.php 를 성공했으니...
좀 더 편하게 하기 위해,
좀 더 확장시키기 위해,
function 으로 만들어서 사용하기로 함.
namespace 에 대한 개념이 없어서...
gmail.php 내용 위에 그냥
function gmailer($, $, $...){ } 이것만 입히면 되는 줄 알았더만... 안 됨 --;
함수 안에서 namespace 쓰려면 어떻게 해야 하는지 좀 찾아보다가,,,
프로그래밍 개념이 더 생기면 그 때 할 수 있겠지라고 자위하며... 우선 마무리.
use 구문 주석처리해주고,
$mail = new PHPMailer\PHPMailer\PHPMailer();
$mail->SMTPDebug = PHPMailer\PHPMailer\SMTP::DEBUG_SERVER;
$mail->SMTPSecure = PHPMailer\PHPMailer\PHPMailer::ENCRYPTION_SMTPS;
이렇게 세 줄 수정 : namespace 및 class 추가.
function gmailer($to, $subject, $body, $attachment_list){
/**
* This example shows settings to use when sending via Google's Gmail servers.
* This uses traditional id & password authentication - look at the gmail_xoauth.phps
* example to see how to use XOAUTH2.
* The IMAP section shows how to save this message to the 'Sent Mail' folder using IMAP commands.
*/
//Import PHPMailer classes into the global namespace
// use PHPMailer\PHPMailer\Exception;
// use PHPMailer\PHPMailer\PHPMailer;
// use PHPMailer\PHPMailer\SMTP;
// require '../vendor/autoload.php';
require './PHPMailer/PHPMailer/src/Exception.php';
require './PHPMailer/PHPMailer/src/PHPMailer.php';
require './PHPMailer/PHPMailer/src/SMTP.php';
//Create a new PHPMailer instance
$mail = new PHPMailer\PHPMailer\PHPMailer();
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
//SMTP::DEBUG_OFF = off (for production use)
//SMTP::DEBUG_CLIENT = client messages
//SMTP::DEBUG_SERVER = client and server messages
$mail->SMTPDebug = PHPMailer\PHPMailer\SMTP::DEBUG_SERVER;
//Set the hostname of the mail server
$mail->Host = 'smtp.gmail.com';
//Use `$mail->Host = gethostbyname('smtp.gmail.com');`
//if your network does not support SMTP over IPv6,
//though this may cause issues with TLS
//Set the SMTP port number:
// - 465 for SMTP with implicit TLS, a.k.a. RFC8314 SMTPS or
// - 587 for SMTP+STARTTLS
$mail->Port = 465;
//Set the encryption mechanism to use:
// - SMTPS (implicit TLS on port 465) or
// - STARTTLS (explicit TLS on port 587)
$mail->SMTPSecure = PHPMailer\PHPMailer\PHPMailer::ENCRYPTION_SMTPS;
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
// $mail->SMTPSecure = 'ssl';
//Username to use for SMTP authentication - use full email address for gmail
$mail->CharSet = "utf-8";
$mail->Username = 'michinaikyj@gmail.com';
//Password to use for SMTP authentication
$mail->Password = '***********';
//Set who the message is to be sent from
//Note that with gmail you can only use your account address (same as `Username`)
//or predefined aliases that you have configured within your account.
//Do not use user-submitted addresses in here
$mail->setFrom('michinaikyj@gmail.com', '김영진');
//Set an alternative reply-to address
//This is a good place to put user-submitted addresses
$mail->addReplyTo('michinaikyj@gmail.com', '김영진');
//Set who the message is to be sent to
$mail->addAddress($to);
//Set the subject line
$mail->Subject = $subject;
//Read an HTML message body from an external file, convert referenced images to embedded,
//convert HTML into a basic plain-text alternative body
//$mail->msgHTML(file_get_contents('contents.html'), __DIR__);
//Replace the plain text body with one created manually
// $mail->AltBody = '
// This is a plain-text message body.
// Hello Paki!
// ';
$mail->Body = $body;
// $attachment = '../thumbnail_practice/img/thumbnail/20220506_171658_THUMB.jpg';
//Attach an image file
if($attachment_list){
foreach($attachment_list as $attachment){
$mail->addAttachment($attachment);
}
}
//send the message, check for errors
if (!$mail->send()) {
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message sent!';
// echo $attachment;
//Section 2: IMAP
//Uncomment these to save your message in the 'Sent Mail' folder.
#if (save_mail($mail)) {
# echo "Message saved!";
#}
}
//Section 2: IMAP
//IMAP commands requires the PHP IMAP Extension, found at: https://php.net/manual/en/imap.setup.php
//Function to call which uses the PHP imap_*() functions to save messages: https://php.net/manual/en/book.imap.php
//You can use imap_getmailboxes($imapStream, '/imap/ssl', '*' ) to get a list of available folders or labels, this can
//be useful if you are trying to get this working on a non-Gmail IMAP server.
function save_mail($mail)
{
//You can change 'Sent Mail' to any other folder or tag
$path = '{imap.gmail.com:993/imap/ssl}[Gmail]/Sent Mail';
//Tell your server to open an IMAP connection using the same username and password as you used for SMTP
$imapStream = imap_open($path, $mail->Username, $mail->Password);
$result = imap_append($imapStream, $path, $mail->getSentMIMEMessage());
imap_close($imapStream);
return $result;
}
}
프로그래밍 개념 없이 접근하고 있지만...
어쨌든 success ㅋ
<?php
require("./php/fn_gmail.php");
$to = 'michinaikyj@gmail.com';
$subject = '지메일 테스트';
$body = '
et테스틍
ㄴㄹ
ㄴ
ㅇㄹ
ㄴㅇ
ㄹ
빠빠빵끼쓰딴
Best Regards,
';
$attachment_list = array(
'./thumbnail_practice/img/thumbnail/20220506_171658_THUMB.jpg',
'./thumbnail_practice/img/thumbnail/20220506_181247_THUMB.jpg'
);
gmailer($to, $subject, $body, $attachment_list);
?>
'개발자 놀이 > HTML | CSS | Javascript | PHP' 카테고리의 다른 글
[php] move_uploaded_file (0) | 2022.08.11 |
---|---|
[php] curl 사용하여 사이트 접속 상태 확인 - 접속 성공 / 실패 확인 (0) | 2022.08.11 |
[php] cron 스케줄러 등록 - 자동으로 이메일 보내기 (0) | 2022.08.11 |
[php] PHPMailer SMTP 설정 (Gmail) (2) | 2022.08.11 |
[php] 썸네일 만들기 (0) | 2022.08.10 |