Member 13708698 Ответов: 0

Почта не получает отправки с помощью phpmailer


Я разместил свой сайт на ifinityfree.net, которые не поддерживают функцию mail (), поэтому я использую phpmailer, я новичок в этой функции. он показывает ошибку

sikderbrightfuture.co.in в настоящее время он не может обработать этот запрос. ОШИБКА HTTP 500
Я не знаю, что делать, пожалуйста, помогите!!
заранее спасибо.
<?php

date_default_timezone_set('Etc/UTC');

// Edit this path if PHPMailer is in a different location.
require_once ("phpmailer\PHPMailerAutoload.php");

$mail = new PHPMailer;
$mail->isSMTP();

/*
 * Server Configuration
 */

$mail->Host = 'smtp.gmail.com'; // Which SMTP server to use.
$mail->Port = 587; // Which port to use, 587 is the default port for TLS security.
$mail->SMTPSecure = 'tls'; // Which security method to use. TLS is most secure.
$mail->SMTPAuth = true; // Whether you need to login. This is almost always required.
$mail->Username = "myemailid@gmail.com"; // Your Gmail address.
$mail->Password = "gmailpass"; // Your Gmail login password or App Specific Password.

/*
 * Message Configuration
 */

$mail->setFrom('myemailid@gmail.com', 'Aditya'); // Set the sender of the message.
$mail->addAddress('mailto@gmail.com', 'Person'); // Set the recipient of the message.
$mail->Subject = 'PHPMailer GMail SMTP test'; // The subject of the message.

/*
 * Message Content - Choose simple text or HTML email
 */

// Choose to send either a simple text email...
$mail->Body = 'This is a plain-text message body'; // Set a plain text body.

// ... or send an email with HTML.
//$mail->msgHTML(file_get_contents('contents.html'));
// Optional when using HTML: Set an alternative plain text message for email clients who prefer that.
//$mail->AltBody = 'This is a plain-text message body'; 

// Optional: attach a file

if ($mail->send()) {
    echo "Your message was sent successfully!";
} else {
    echo "Mailer Error: " . $mail->ErrorInfo;
}


Что я уже пробовал:

1) я попробовал переключить режим SMTP с tls на ssl и порт нет.

Mohibur Rashid

ОШИБКА HTTP 500?
Внутренняя ошибка сервера? работает ли ваш PHP-скрипт?

Member 13708698

Да но все же есть внутренняя ошибка

0 Ответов