[php] sendmailよりも高性能なメール送信モジュールPHP Mailer(日本語文字化け対策)
phpでメール送信を行う際、使用できる関数「sendmail」があるが、ポート587を使用できなかったり、外部のメールサーバが使えなかったりする
セキュアなポート587も使えて外部メールサーバも使用できるPHP Mailerというモジュールが公開されているので、そちらを使用する
日本語の文字化けが通常では発生するのでその対策方法も記述しておく
目次
PHP Mailerのインストール
https://github.com/PHPMailer/PHPMailer
からダウンロードするか上記サイトに記述してあるComposerを使用してインストールする
ファイルをダウンロードしてインストールする場合は、任意の場所にアップロード
PHP Mailerの使い方
Composerを使用してインストールしたのであれば、下記コードでメール送信できる
<?php mb_internal_encoding("UTF-8"); //UTF-8を指定して文字化け対策 // 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->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; STARTTLSを受け付けてくれないメールサーバはこちらをコメントアウトする $mail->Port = 587; // TCP port to connect to //Recipients $mail->setFrom('from@example.com', 'Mailer'); //FromとFromに表示される名前 $mail->addAddress('joe@example.net', 'Joe User'); // 送信先。addAddressを複数追加することで複数の送信先に同時送信できる $mail->addAddress('ellen@example.com'); // 送信先。名前はOptionなので必須ではない $mail->addReplyTo('info@example.com', 'Information'); $mail->addCC('cc@example.com'); $mail->addBCC('bcc@example.com'); // Attachments $mail->addAttachment('/var/tmp/file.tar.gz'); // 添付 $mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // 添付ファイルとその名前 // Content $mail->isHTML(true); // HTMLフォーマットを使用する場合はtrue、プレーンテキストであればfalse $mail->Subject = mb_encode_mimeheader('日本語のタイトル'); $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'; //HTMLフォーマットの場合はALTメッセージも $mail->send(); //送信! echo 'メール送信完了'; } catch (Exception $e) { echo "エラー発生でメール送信失敗: {$mail->ErrorInfo}"; }
Composerを使用せずにファイルを直接ファイルを使用する場合は
<?php mb_internal_encoding("UTF-8"); //UTF-8を指定して文字化け対策 use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require 'path/to/PHPMailer/src/Exception.php'; //Exception.phpの場所 require 'path/to/PHPMailer/src/PHPMailer.php'; //PHPMailer.phpの場所 require 'path/to/PHPMailer/src/SMTP.php'; //SMTP.phpの場所 // Instantiation and passing `true` enables exceptions $mail = new PHPMailer(true); try { //Server settings $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; STARTTLSを受け付けてくれないメールサーバはこちらをコメントアウトする $mail->Port = 587; // TCP port to connect to //Recipients $mail->setFrom('from@example.com', 'Mailer'); //FromとFromに表示される名前 $mail->addAddress('joe@example.net', 'Joe User'); // 送信先。addAddressを複数追加することで複数の送信先に同時送信できる $mail->addAddress('ellen@example.com'); // 送信先。名前はOptionなので必須ではない $mail->addReplyTo('info@example.com', 'Information'); $mail->addCC('cc@example.com'); $mail->addBCC('bcc@example.com'); // Attachments $mail->addAttachment('/var/tmp/file.tar.gz'); // 添付 $mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // 添付ファイルとその名前 // Content $mail->isHTML(true); // HTMLフォーマットを使用する場合はtrue、プレーンテキストであればfalse $mail->Subject = mb_encode_mimeheader('日本語のタイトル'); $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'; //HTMLフォーマットの場合はALTメッセージも $mail->send(); //送信! echo 'メール送信完了'; } catch (Exception $e) { echo "エラー発生でメール送信失敗: {$mail->ErrorInfo}"; }