PHPの中でMailerライブラリをどのように呼び出すか

PHPのMailerライブラリを使用すると、次の手順で呼び出すことができます:

  1. composer.jsonファイル
{
    "require": {
        "phpmailer/phpmailer": "^6.0"
    }
}

その後、Mailerライブラリをインストールするためにcomposer installを実行してください。

  1. Mailerライブラリを使用するファイルでは、Mailerライブラリの自動読み込みファイルをインポートしてください。
require 'vendor/autoload.php';
  1. PHPMailerはメールの送受信を簡単に行えるライブラリです。
use PHPMailer\PHPMailer\PHPMailer;

$mail = new PHPMailer();

$mail->isSMTP();
$mail->Host = 'smtp.example.com';
$mail->Port = 587;
$mail->SMTPAuth = true;
$mail->Username = 'your-email@example.com';
$mail->Password = 'your-email-password';
$mail->SMTPSecure = 'tls';
$mail->setFrom('your-email@example.com', 'Your Name');
$mail->addAddress('recipient@example.com', 'Recipient Name');
$mail->Subject = 'Testing PHPMailer';
$mail->Body = 'This is a test email sent using PHPMailer.';
  1. 送る (okuru)
if($mail->send()) {
    echo 'Email sent successfully';
} else {
    echo 'Error sending email: ' . $mail->ErrorInfo;
}

上記のコードでは、SMTPサーバーのアドレス、ポート番号、ユーザー名、パスワードなど、必要に応じて設定を行うことができます。また、添付ファイルの追加やメールの形式設定も可能です。

これがPHPのMailerライブラリを使用して呼び出す基本的な手順です。具体的な要件に応じて、さらに多くの設定や操作を行うこともできます。

bannerAds