使用 PHPMailer 發送電子郵件時 Cron Job 是否需要 MTA

使用 PHPMailer 發送電子郵件時 Cron Job 是否需要 MTA

我正在使用 CRON Job 在接近提交截止日期時向使用者發送電子郵件警報。但是當我想先發送一封簡單的電子郵件來測試它時,它一直顯示(CRON) info (No MTA installed, discarding output)syslog.但是當我使用 URL 運行 PHP 腳本時,它能夠將電子郵件發送給我。

所以我的問題是,當執行 CRON 作業以使用 PHPMailer 發送電子郵件時,是否需要在 Web 伺服器上安裝 MTA?

這是我的crontab程式碼:

* * * * * /var/www/html/test.php (cmd1;  cmd2) 2>&1 | logger -t mycmd

這是我的test.php程式碼:

<?php

use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;

require '/usr/share/php/libphp-phpmailer/src/Exception.php';
require '/usr/share/php/libphp-phpmailer/src/PHPMailer.php';
require '/usr/share/php/libphp-phpmailer/src/SMTP.php';

require '/usr/share/php/libphp-phpmailer/autoload.php';

// Set the script time zone to UTC
date_default_timezone_set('Etc/UTC');

function sendMail($email, $message, $subject) {
    $mail = new PHPMailer();

    // set up for the SMTP and used account
    $mail->isSMTP();
    $mail->Host = 'smtp.gmail.com';
    $mail->SMTPAuth = true;
    $mail->Username = '[email protected]';
    $mail->Password = 'password';
    $mail->Port = 587;
    // Disable some SSL check
    $mail->SMTPOptions = array(
        'ssl' => array(
            'verify_peer' => false,
            'verify_peer_name' => false,
            'allow_self_signed' => true
        )
    );

    // sender, recipient, reply-to etc
    $mail->SetFrom('[email protected]', 'Reply-to');
    $mail->addAddress("$email");
    $mail->IsHTML(true);

    // email contains
    $mail->Subject = "$subject";
    $mail->Body = $message;

    // send email
    $mail->send();
}

sendMail("[email protected]", "Hello World!", "Test");
?>

相關內容