PHPMailer 에서 php mail() 함수 사용하여 메일 발송
이전 포스트에서 PHPMailer 를 이용해 메일 발송하는 것을 다뤘는데 일부 웹호스팅 환경에서는 smtp 사용할 경우 오히려 메일 발송이 실패하는 경우가 있고 php mail()
함수를 이용할 경우 정상적으로 발송되는 경우가 있어 smtp 사용 여부를 선택할 수 있도록 수정했다.
<?php
// PHPMailer SMTP
define('CM_SMTP_USE', false);
define('CM_SMTP_HOST', 'smtp.server.com');
define('CM_SMTP_PORT', '587');
define('CM_SMTP_AUTH', true);
define('CM_SMTP_USER', 'user@server.com');
define('CM_SMTP_PASS', 'password');
define('CM_SMTP_SECURE', 'tls');
define('CM_SMTP_DEBUG', false);
// Mail Sender
define('CM_SENDER_NAME', '');
define('CM_SENDER_EMAIL', '');
config.php 파일엔 define('CM_SMTP_USE', false);
를 추가했다. PHPMailer 클래스를 상속받아 구현된 MAILER 클래스의 코드를 아래처럼 수정했다.
<?php
/**
* Mail send
* type : text=0, html=1, text+html=2
*/
require __DIR__.'/PHPMailer/PHPMailerAutoload.php';
class MAILER extends PHPMailer
{
public function __construct($exceptions = null)
{
parent::__construct($exceptions);
if (CM_SMTP_USE === true) {
$this->isSMTP();
$this->Host = CM_SMTP_HOST;
$this->Port = CM_SMTP_PORT;
$this->Username = CM_SMTP_USER;
$this->Password = CM_SMTP_PASS;
$this->SMTPSecure = CM_SMTP_SECURE;
$this->SMTPAuth = CM_SMTP_AUTH;
}
if (CM_SMTP_DEBUG === true) {
$this->SMTPDebug = 2;
$this->Debugoutput = 'html';
}
$this->CharSet = 'UTF-8';
$this->AltBody = '';
}
}
자세한 수정 내역은 github 에서 확인할 수 있다.