Cześć
Mam taki problem. Na stronie az.pl mam postawiony serwer. Mam skrzynkę pocztową na az.pl. Niestety nie chce mi wysyłać mejla. Jeśli to: >> $mail->Body = "treść"; << jest wpisane to dostaję ERROR 500. Jeśli zakomentuję to, wtedy dostaję błąd jak poniżej:
error_reporting(E_ALL);
ini_set('display_errors', 1);
require 'PHPMailerAutoload.php';
require_once('class.phpmailer.php'); // dodanie klasy phpmailer
require_once('class.smtp.php'); // dodanie klasy smtp
$mail = new PHPMailer(); //utworzenie nowej klasy phpmailer
$mail->From = "kontakt@stepbystep.net.pl"; //Pełny adres e-mail
$mail->FromName = "StepByStep"; //imię i nazwisko lub nazwa użyta do wysyłania wiadomości
$mail->Host = "az-serwer1858179.online.pro"; //adres serwera SMTP wysyłającego e-mail
$mail->Mailer = "smtp"; //do wysłania zostanie użyty serwer SMTP
$mail->SMTPAuth = true; //włączenie autoryzacji do serwera SMTP
$mail->Username = "kontakt@stepbystep.net.pl"; //nazwa użytkownika do skrzynki e-mail
$mail->Password = "*******"; //hasło użytkownika do skrzynki e-mail
$mail->Port = 465; //port serwera SMTP
$mail->Subject = "temat"; //Temat wiadomości, można stosować zmienne i znaczniki HTML
$mail->Body = "trść";
$mail->SMTPAutoTLS = false; //wyłączenie TLS
$mail->SMTPSecure = ''; //
$mail->AddAddress ("andrysiakzbyszek@gmail.com","*****"); //adres skrzynki e-mail
if($mail->Send()) //sprawdzenie wysłania, jeśli wiadomość została pomyślnie wysłana
{
echo 'E-mail został wysłany'; //wyświetl ten komunikat
}
else //w przeciwnym wypadku
{
echo 'E-mail nie mógł zostać wysłany';
var_dump($mail);
}
E-mail nie mógł zostać wysłanyobject(PHPMailer)#1 (76) { ["Version"]=> string(6) "5.2.27"
["Priority"]=> NULL ["CharSet"]=> string(10) "iso-8859-1"
["ContentType"]=> string(10) "text/plain" ["Encoding"]=> string(4) "8bit"
["ErrorInfo"]=> string(18) "Message body empty"
["From"]=> string(25) "kontakt@stepbystep.net.pl"
["FromName"]=> string(10) "StepByStep" ["Sender"]=> string(0) ""
["ReturnPath"]=> string(0) "" ["Subject"]=> string(5) "temat" ["Body"]=> string(0) ""
["AltBody"]=> string(0) "" ["Ical"]=> string(0) ""
["MIMEBody":protected]=> string(0) "" ["MIMEHeader":protected]=> string(0) ""
["mailHeader":protected]=> string(0) "" ["WordWrap"]=> int(0)
["Mailer"]=> string(4) "smtp" ["Sendmail"]=> string(18) "/usr/sbin/sendmail"
["UseSendmailOptions"]=> bool(true) ["PluginDir"]=> string(0) ""
["ConfirmReadingTo"]=> string(0) "" ["Hostname"]=> string(0) ""
["MessageID"]=> string(0) "" ["MessageDate"]=> string(0) ""
["Host"]=> string(27) "az-serwer1858179.online.pro"
["Port"]=> int(465) ["Helo"]=> string(0) "" ["SMTPSecure"]=> string(0) ""
["SMTPAutoTLS"]=> bool(false) ["SMTPAuth"]=> bool(true)
["SMTPOptions"]=> array(0) { } ["Username"]=> string(25) "kontakt@stepbystep.net.pl"
["Password"]=> string(13) "Stepbystep724" ["AuthType"]=> string(0) ""
["Realm"]=> string(0) "" ["Workstation"]=> string(0) "" ["Timeout"]=> int(300)
["SMTPDebug"]=> int(0) ["Debugoutput"]=> string(4) "html"
["SMTPKeepAlive"]=> bool(false) ["SingleTo"]=> bool(false)
["SingleToArray"]=> array(0) { } ["do_verp"]=> bool(false) ["AllowEmpty"]=> bool(false)
["LE"]=> string(1) " " ["DKIM_selector"]=> string(0) "" ["DKIM_identity"]=> string(0) ""
["DKIM_passphrase"]=> string(0) "" ["DKIM_domain"]=> string(0) ""
["DKIM_private"]=> string(0) "" ["DKIM_private_string"]=> string(0) ""
["action_function"]=> string(0) "" ["XMailer"]=> string(0) "" ["smtp":protected]=> NULL
["to":protected]=> array(1) { [0]=> array(2) { [0]=> string(26) "andrysiakzbyszek@gmail.com" [1]=> string(17) "Paweł Perliński" } } ["cc":protected]=> array(0) { } ["bcc":protected]=> array(0) { }
["ReplyTo":protected]=> array(0) { } ["all_recipients":protected]=> array(1) { ["andrysiakzbyszek@gmail.com"]=> bool(true) } ["RecipientsQueue":protected]=> array(0) { } ["ReplyToQueue":protected]=> array(0) { } ["attachment":protected]=> array(0) { } ["CustomHeader":protected]=> array(0) { } ["lastMessageID":protected]=> string(0) "" ["message_type":protected]=> string(5) "plain" ["boundary":protected]=> array(0) { } ["language":protected]=> array(19) { ["authenticate"]=> string(35) "SMTP Error: Could not authenticate." ["connect_host"]=> string(43) "SMTP Error: Could not connect to SMTP host." ["data_not_accepted"]=> string(30) "SMTP Error: data not accepted." ["empty_message"]=> string(18) "Message body empty" ["encoding"]=> string(18) "Unknown encoding: " ["execute"]=> string(19) "Could not execute: " ["file_access"]=> string(23) "Could not access file: " ["file_open"]=> string(33) "File Error: Could not open file: " ["from_failed"]=> string(35) "The following From address failed: " ["instantiate"]=> string(36) "Could not instantiate mail function." ["invalid_address"]=> string(17) "Invalid address: " ["mailer_not_supported"]=> string(25) " mailer is not supported." ["provide_address"]=> string(54) "You must provide at least one recipient email address." ["recipients_failed"]=> string(45) "SMTP Error: The following recipients failed: " ["signing"]=> string(15) "Signing Error: " ["smtp_connect_failed"]=> string(22) "SMTP connect() failed." ["smtp_error"]=> string(19) "SMTP server error: " ["variable_set"]=> string(30) "Cannot set or reset variable: " ["extension_missing"]=> string(19) "Extension missing: " } ["error_count":protected]=> int(1) ["sign_cert_file":protected]=> string(0) "" ["sign_key_file":protected]=> string(0) "" ["sign_extracerts_file":protected]=> string(0) "" ["sign_key_pass":protected]=>
string(0) "" ["exceptions":protected]=> bool(false) ["uniqueid":protected]=> string(0) "" }