Я провел некоторые поиски перед этим постом, и я все еще не могу заставить это работать. Я пытаюсь настроить работу cron с PHPMailer, чтобы отправлять электронные письма так часто. Сценарий ниже работает, если я запускаю его вручную, но не работает в планировщике заданий cron.
Для этого примера - я запускаю его каждую минуту. Я думаю, что это должно что-то делать с "vendor / autoload. php", и это путь не загружается правильно? Я не добавил свои учетные данные SMTP с ключом API для соображений безопасности, а также для получателей этого сообщения.
Вот мои настройки cron'а в Cpanel.
Вот мой код PHPMailer :
// 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->SMTPDebug = SMTP::DEBUG_SERVER; // Enable verbose debug output
$mail->isSMTP(); // Send using SMTP
$mail->Host = ''; // Set the SMTP server to send through
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = ''; // SMTP username
$mail->Password = ''; // SMTP password
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; // Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` also accepted
$mail->Port = 587; // TCP port to connect to
// Recipients
$mail->setFrom('email@email.com', '');
$mail->addAddress('email@email.com', ''); // Add a recipient
$mail->addReplyTo('email@email.com', '');
// $mail->addCC('cc@example.com');
// $mail->addBCC('');
// Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'PHPMailer email';
// $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';
$mail->msgHTML(file_get_contents('email.html'), __DIR__); // Use this if not using the above code
// ********* PHP-MAILER ********* //
$mail->send();
echo 'Email sent!';
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
Если бы кто-нибудь мог мне помочь, я был бы очень признателен!