Smtp error data not accepted smtp server error data end command failed detail

I'm trying to figure out this issue for 6 hours. But there is nothing to make sense. Here is the scenario; There is a well formatted HTML template. $mail_body = ' Message Num :</b&...

I’m trying to figure out this issue for 6 hours. But there is nothing to make sense. Here is the scenario; There is a well formatted HTML template.

$mail_body = '
    <b>Message Num :</b> 769<br />
    <b>Message Date :</b> 2013-04-08 09:03:21<br />
    <b>Name :</b> John Doe<br />
    <b>Phone :</b> 123456789<br />
    <b>E-mail :</b> abcdf@somedomain.com<br />
    <b>Message :</b> Here is the message info<br />
';

Here is the array of recipients’ mails;

$recipients = array("abc@something.com","xyz@somtehing.com");

Everything looks fine and email ready to send.Here is the phpmailer config;

$mail = new PHPMailer(); 
$mail->IsSMTP();
$mail->From = "noreply@something.com"; 
$mail->FromName = "TEST";
$mail->WordWrap = 50;

foreach($recipients as $mail_add) {
    $mail->AddAddress($mail_add);
}
$mail->IsHTML(true);
$mail->Subject = "TEST Subject";
$mail->Body = $mail_body;
if(!$mail->Send()) {
    echo $mail->ErrorInfo;
} else { 
        echo "Mail sent...";
}

Everything is same when I test it. But sometimes email was sent. Sometimes it was not sent. Give me the following error : The following SMTP Error: Data not accepted.

I hope I explained

asked Apr 8, 2013 at 13:14

Yasin Yörük's user avatar

12

your server dosen’t allow different sender and username
you should config: $mail->From like $mail->Username

pb2q's user avatar

pb2q

57.6k18 gold badges145 silver badges146 bronze badges

answered Jan 2, 2014 at 16:54

J Ha's user avatar

J HaJ Ha

1,15212 silver badges16 bronze badges

7

set phpmailer to work in debug to see the «real» error behind the generic message ‘SMTP Error: data not accepted’ in our case the text in the message was triggering the smtp server spam filter.

  $email->SMTPDebug = true;

answered Feb 4, 2016 at 9:46

zzapper's user avatar

zzapperzzapper

4,6635 gold badges47 silver badges45 bronze badges

1

For AWS users who work with Amazon SES in conjunction with PHPMailer, this error also appears when your «from» mail sender isn’t a verified sender.

To add a verified sender:

  1. Log in to your Amazon AWS console: https://console.aws.amazon.com

  2. Select «Amazon SES» from your list of available AWS applications

  3. Select, under «Verified Senders», the «Email Addresses» —> «Verify a new email address»

  4. Navigate to that new sender’s email, click the confirmation e-mail’s link.

And you’re all set.

Uwe Keim's user avatar

Uwe Keim

39k56 gold badges175 silver badges289 bronze badges

answered Aug 29, 2014 at 1:21

Jonathan LeRoux's user avatar

2

Interestingly, I had the same exact issue and for me the problem was that my connection was timing out. To be able to see more details on my connections, I added $mail->SMTPDebug = 4; to my phpmailer (look up how to capture the debug since the default output function is echo).

Here’s the result:

SMTP -> get_lines(): $data was ""
SMTP -> get_lines(): $str is ""
SMTP -> get_lines(): $data is ""
SMTP -> get_lines(): timed-out (10 seconds)
SMTP -> FROM SERVER:
SMTP -> ERROR: DATA not accepted from server: 

The default timeout is set to 10 seconds. If your app can support more, add this line to your phpmailer:

$mail->Timeout = 20;

Nicolas Raoul's user avatar

Nicolas Raoul

57.9k57 gold badges218 silver badges366 bronze badges

answered Mar 8, 2017 at 16:22

phoenix's user avatar

phoenixphoenix

1,52119 silver badges11 bronze badges

3

Over a certain message of size, it messes up the content when setting through $mail->Body.

You can test it, if it works well with small messages, but doesn’t work with larger (over 4-6 kB), then this is the problem.

It seems to be the problem of $mail->Body, so you can get around this by setting the HTML body manually via $mail->MsgHTML($message). And then you can try to only add the non-html body by $mail->AltBody.

Hope that I could help, feel free to provide more details, information.

answered Apr 12, 2013 at 15:36

Adam Szabo's user avatar

Adam SzaboAdam Szabo

11.2k18 gold badges63 silver badges100 bronze badges

1

I was using just

$mail->Body    = $message;

and for some sumbited forms the PHP was returning the error:

SMTP Error: data not accepted.SMTP server error: DATA END command failed Detail: This message was classified as SPAM and may not be delivered
SMTP code: 550

I got it fixed adding this code after $mail->Body=$message :

$mail->MsgHTML = $message;
$mail->AltBody = $message;

answered Mar 22, 2018 at 17:00

André A.'s user avatar

3

Try to set the port on 26, this has fixed my problem with the message «data not accepted».

answered Dec 5, 2014 at 15:06

Matteo's user avatar

We send email via the Gmail SMTP servers, and we get this exact error from PHPMailer sometimes when we hit our Gmail send limits.

You can check if it’s the same thing happening to you by going into Gmail and trying to manually send an email. In our case that displays the more helpful error message about sending limits.

https://support.google.com/a/answer/166852?hl=en

answered Jul 18, 2017 at 6:08

brismuth's user avatar

brismuthbrismuth

34.7k3 gold badges34 silver badges37 bronze badges

I was hitting this error with phpMailer + Amazon SES. The phpMailer error is not very descriptive:

2: message: SERVER -> CLIENT: 554 Transaction failed: Expected ';', got ""
1: message: 
2: message: SMTP Error: data not accepted.

For me the issue was simply that I had the following as content type:

$phpmailer->ContentType = 'text/html; charset=utf-8rn';

But that it shouldn’t have the linebreak in it:

$phpmailer->ContentType = 'text/html; charset=utf-8';

… I suspect this was legacy code from our older version. So basically, triple check every $phpmailer setting you’re adding — the smallest detail counts.

answered Feb 26, 2019 at 14:37

Woody Hayday's user avatar

First you better set debug to TRUE:

$email->SMTPDebug = true;

Or temporary change value of public $SMTPDebug = false; in PHPMailer class.

And then you can see the full log in the browser.
For me it was too many emails per second:

...
SMTP -> FROM SERVER:XXX.XX.XX.X Ok
SMTP -> get_lines(): $data was ""
SMTP -> get_lines(): $str is "XXX.XX.XX.X Requested action not taken: too many emails per second "
SMTP -> get_lines(): $data is "XXX.XX.XX.X Requested action not taken: too many emails per second "
SMTP -> FROM SERVER:XXX.XX.XX.X Requested action not taken: too many emails per second
SMTP -> ERROR: DATA command not accepted from server: 550 5.7.0 Requested action not taken: too many emails per second
...

Thus I got to know what was the exact issue.

Nicolas Raoul's user avatar

Nicolas Raoul

57.9k57 gold badges218 silver badges366 bronze badges

answered May 9, 2019 at 11:52

Sadee's user avatar

SadeeSadee

2,92435 silver badges36 bronze badges

I was experiencing this same problem. In my instance the send mail was timing out because my Exchange server was relaying email to a server on the internet. That server had exceeded it’s bandwidth quota. Apparently php mailer has some built in timeout and it wasn’t long enough to see the actual message.

answered Nov 19, 2013 at 2:50

geekinit's user avatar

geekinitgeekinit

1,3452 gold badges14 silver badges17 bronze badges

In my case in cpanel i have ‘Register mail ids’ option where i add my email address and after 30 minutes it works fine with simple php mail function.

answered Feb 7, 2019 at 13:15

Dinesh Gurjar's user avatar

If you are using the Office 365 SMTP gateway then «SMTP Error: data not accepted.» is the response you will get if the mailbox is full (even if you are just sending from it).

Try deleting some messages out of the mailbox.

answered Mar 6, 2019 at 9:06

beingalex's user avatar

beingalexbeingalex

2,3964 gold badges31 silver badges70 bronze badges

In my case the problem was with the content of mail. When I changed content to simpler content without HTML, it worked. But after updating the phpmailer everything solved.

answered Mar 7, 2019 at 12:32

NightOwl's user avatar

NightOwlNightOwl

3292 silver badges20 bronze badges

in my case I was using AWS SES and I had to verify both «FromEmail» and «Recipient». Once done that I could send without problems.

answered Feb 5, 2020 at 4:04

Gabriel Cortes's user avatar

Mailgun sanbox error

With $PHPMailer->SMTPDebug = true; I found out that when using the mailgun sandbox domain, the email has to be added to an authorized recipients list (which is on the right panel of the sandbox domain overview)

answered Jun 1, 2021 at 7:25

Samuel Gfeller's user avatar

It happen too, when you used stripslashes or addslashesh or real_escape_string.

Avoid these things inside email body, when your email execution code completed then you can add these lines in bottom.

answered Mar 2, 2022 at 15:29

Saif Warsi's user avatar

1

/public/img/default_profile_50.png

Статья была полезной?

Если сообщение не было доставлено получателю, то ему будет присвоен один из следующих статусов:

  • Отменено/Запрещено — если отправка сообщения ограничена со стороны внутреннего функционала GetCourse. Например, пользователь забанен, отписался от категории или перестал удовлетворять условию рассылки.
  • Ошибка — если сообщение было отклонено почтовым сервером. В таком случае в аккаунт поступит отчет с текстовым описанием ошибки. Проанализировав ошибку, можно понять причину, по которой сообщение не было доставлено.

В статье разберем основные виды ошибок при отправке email-рассылок и рекомендации по работе с ними.

<h4>Пример возвращенной ошибки. В деталях ошибки видим, что почтовый ящик пользователя был переполнен.</h4>

Пример возвращенной ошибки. В деталях ошибки видим, что почтовый ящик пользователя был переполнен.

Ссылка на это место страницы:
#main

Текстовое описание одной и той же ошибки может отличаться в зависимости от почтового сервиса, который ее возвращает. Например ошибки:

  • Mailbox does not exist. We do not relay
  • No such user!

Означают, что эл. адрес пользователя не существует.

В статье мы перечислили известные описания ошибок и условно поделили их на несколько категорий:

  • Ошибки в названии электронных ящиков
  • Ошибки в названии домена или его настройках
  • Почтовый ящик пользователя переполнен или заблокирован
  • Попадание в спам на почтовом сервисе
  • Грейлистинг (серый список)
  • Ошибки, связанные с неправильной настройкой доменной почты
  • Попадание IP-адреса в черный список

Чтобы быстро найти значение вашей ошибки в статье, воспользуйтесь поиском по странице (ctrl+F). Для этого введите значение ошибки, как показано в слайдере ниже:

Ссылка на это место страницы:
#incorrect_address

Примеры ошибок:

  • Mailbox does not exist. We do not relay
  • No such user!
  • Unknown user
  • Recipient address rejected: User unknown in local recipient table
  • The email account that you tried to reach does not exist
  • sorry, no mailbox here by that name
  • no mailbox by that name is currently available
  • Requested action not taken: mailbox unavailable
  • Message was not accepted — invalid mailbox
  • Bad recipient address syntax
  • Bad address mailbox syntax
  • No correct recipients
  • We do not relay without RFC2554 authentication

Рекомендации:
Попробуйте связаться с получателем альтернативным способом связи, чтобы уточнить корректный электронный адрес. Затем поменяйте email в карточке. Как это сделать, смотрите в слайдере:

Ссылка на это место страницы:
#receive

Ссылка на это место страницы:
#specific

Ссылка на это место страницы:
#no_connection

  • MX lookup failed for […]

Данная ошибка указывает на проблемы с MX-записью домена, на который отправлялось письмо, либо по каким-то причинам не удалось проверить его MX-запись. Возможно, при регистрации пользователь указал некорректный адрес почты. Повторные попытки отправки сообщений при получении данной ошибки не производятся.

Если не удалось связаться с почтовым сервером, то вернутся следующие ошибки:

  • Called MAIL FROM without being connected
  • SMTP connect() failed
  • RCPT TO command failed

Причины и рекомендации:

  • Опечатки в электронных адресах
  • Ограничения со стороны корпоративных доменов
  • Общие рекомендации по базе электронных адресов

Ссылка на это место страницы:
#errors

При регистрации пользователь может указать электронный адрес с опечаткой. Сообщение на такой адрес доставить не получиться. Наиболее часто встречающимися опечатками являются:

  • mail.ri — вместо mail.ru
  • gmail.ru — вместо gmail.com
  • yndex.ru — вместо yandex.ru

Рекомендации:

Периодически проверять базу пользователей на опечатки в электронных адресах и менять им почту.

Обратите внимание: электронная почта пользователя указана корректно, если она подтверждена. То есть чем больше % пользователей в вашей клиентской базе, которые подтвердили свою почту, тем меньше будет ошибок в адресах при отправке рассылок «по адресам, где дано разрешение на рассылки». И соответственно, выше доставляемость сообщений.

Ссылка на это место страницы:
#corp

Корпоративные ящики — это почтовые ящики с доменами, принадлежащими университетам, магазинам, государственным предприятиям и предназначенные только для их сотрудников. Например, @hh.ru.

Корпоративные ящики чаще всего имеют свои почтовые сервера, индивидуальные спам-фильтры или другие настройки, которые могут влиять на доставляемость сообщений.

Рекомендации:

  • Самостоятельно связаться с владельцами корпоративного домена, привести пример ошибки и уточнить, почему ваши сообщения не принимаются.
  • Если пользователей с таким доменом в аккаунте немного, то наиболее оптимальным решением будет узнать у пользователя альтернативную почту на более популярном сервисе (gmail.com, yandex.ru, mail.ru) и сменить ее в карточке пользователя.

Ссылка на это место страницы:
#popular

В качестве электронных почт пользователей рекомендуем использовать наиболее популярные почтовые сервисы, такие как mail.ru, gmail.com или yandex.ru. Это очень распространённые и надёжные почтовые сервисы с высокой доставляемостью сообщений.

Важно: Для снижения рисков попадания рассылок в спам отправляйте рассылки «по адресам, где дано разрешение на рассылки». Такие пользователи предоставили прямое согласие на получение рассылок, а их адреса точно не содержат ошибок. Поэтому важно не только собирать базу качественных электронных адресов, но и подтверждать их с помощью письма DOI.

Ссылка на это место страницы:
#temp

Также не рекомендуем использовать в качестве электронных адресов временные почтовые ящики. Временный ящик — ящик, который не требует регистрации и позволяет принимать электронные письма, которые будут удалены через определенный срок. Например, @yopmail.com или @maildrop.cc.

Как правило, такие ящики обладают рядом ограничений. Например, могут не поддерживать html-версию письма или не восприниматься почтовыми службами как надежные получатели, так как не принадлежат реальным пользователям. Поэтому отправка на них рассылок может привести к снижению репутации отправителя, а, следовательно, снизить доставляемость ваших сообщений.

Важно: вход во временные ящики осуществляется без пароля, поэтому их содержимое может просмотреть любой пользователь. Подобные электронные почты не рекомендуется использовать в качестве почт пользователей и сотрудникам (например, для тестирования).

Рекомендации:

Отписывать от рассылок или удалять из базы пользователей с временными почтами.

Ссылка на это место страницы:
#overflowing_box

Примеры ошибок, возвращающихся при отправке на переполненные ящики:

  • Mailbox size limit exceeded.
  • Mailbox size exceeded
  • User is overquota
  • The email account that you tried to reach is over quota

Примеры ошибок, возвращающихся при отправке на заблокированные ящики:

  • Mailbox […] is locked due to inactivity for more than […] months
  • Аccess to this account (user) […] is disabled
  • Mailbox is disabled

Причины:

Подобные ошибки означают, что в почтовом ящике получателя нет места, чтобы принять ваше сообщение. Чаще всего это происходит потому, что получатель редко пользуется ящиком и ящик переполняется рассылками. Подобные адреса также могут быть преобразованы в спам-ловушки, отправка на которые приводит к значительному ухудшению репутации отправителя.

Ссылка на это место страницы:
#disabled

Рекомендации:

Попробуйте связаться с получателем альтернативным способом связи и сообщить о проблеме. Если связаться не удается, вы можете отписать пользователя от получения рассылок. Рекомендуется периодически отписывать от рассылок пользователей, которые не читают ваших сообщений.

Ссылка на это место страницы:
#spam

Примеры попадания в спам:

  • IP […] Our system has detected an unusual rate of unsolicited mail originating from your IP address. To protect our users from spam, mail sent from your IP address has been temporarily rate limited — такая ошибка возвращается почтовым сервисом Gmail в случае если Google заподозрил отправку слишком большого числа подозрительных писем (спама) с IP адреса отправителя. В этом случае Google включает временное ограничение на количество принимаемых писем.
  • Message rejected under suspicion of SPAM
  • Client host […] blocked using spamsource.mail.yandex.net
  • Blocked by spam statistics
  • 550 spam message discarded/rejected

Причины:

При отправке сообщений из аккаунта вероятнее всего не были соблюдены рекомендации для высокой доставляемости. Например, не производился прогрев отправляющего домена или велись рассылки по базе пользователей, которые не давали своего согласия на их получения.

Ссылка на это место страницы:
#graylisting

Примеры ошибок:

  • Greylisting in action, please come back later
  • Greylisted, try again after some time
  • Greylisted, try again in 180 seconds
  • Sorry, the service is currently unavailable. Please come back later
  • Temporary local problem — please try later
  • Try again later

Грейслистинг (серые списки) — это способ автоматической блокировки спама. Принцип работы данного способа заключается в следующем: если почтовому сервису кажется подозрительным принимаемое им письмо, то он может не принять его и попросить переотправить сообщение позже.

Рекомендации:

На платформе GetCourse подобные запроса распознаются и письмо переотправляется автоматически позже. Спамерское программное обеспечение в таких случаях, обычно, не пытается переотправить письмо, и их сообщения не доходят.

Однако если письмо после 5 попыток переотправки снова вернулось с ошибкой, система фиксирует текст ошибки и больше не делает попыток переотправки. В этом случае письмо можно переотправить через некоторое время вручную.

Ссылка на это место страницы:
#mail_settings

  • non-local sender verification failed — обычно такая ошибка возвращается почтовым сервисом Gmail или Mail.ru. При появлении данной ошибки необходимо проверить корректность SPF, DKIM и MX в DNS-зоне домена, с которого осуществляется отправка рассылок.
  • Can’t verify […] sender. Check your DNS configuration — при появлении данной ошибки необходимо проверить корректность SPF и DKIM в DNS-зоне домена, с которого происходит отправка почты.
  • sender domain SPF exact match mandatory for IP […]ошибка в SPF-записи домена, с которого происходит отправка письма. Необходимо проверить корректность SPF-записи, или что присутствует только одна SPF-запись.
  • This message was not accepted due to domain […] owner DMARC policy (RFC 7489) — сообщение было заблокировано из-за строгой политики DMARC почтового сервиса. Подробнее о настройке DMARC на GetCourse, читайте в отдельной статье.

Ссылка на это место страницы:
#IP_block

  • rejected because IP[…] is in a blacklist-dns at […]
  • Access denied, banned sending IP […]
  • Connection closed. IP […] is listed in Blacklist
  • [E-mail] blacklisted by […]

При получении подобных ошибок обратитесь к нам в техническую поддержку для дополнительной консультации.

Мы разобрали типичные ошибки при отправке email рассылок. Если ошибки возникают при отправке другими транспортами, рекомендации по их решению вы найдете в следующих статьях:

  • Telegram
  • SMS
  • WhatsApp Business
  • ВКонтакте
  • Viber
  • Facebook*

*принадлежит компании Meta, признанной экстремистской организацией и запрещенной в Российской Федерации.

I’m trying to figure out this issue for 6 hours. But there is nothing to make sense. Here is the scenario; There is a well formatted HTML template.

$mail_body = '
    <b>Message Num :</b> 769<br />
    <b>Message Date :</b> 2013-04-08 09:03:21<br />
    <b>Name :</b> John Doe<br />
    <b>Phone :</b> 123456789<br />
    <b>E-mail :</b> abcdf@somedomain.com<br />
    <b>Message :</b> Here is the message info<br />
';

Here is the array of recipients’ mails;

$recipients = array("abc@something.com","xyz@somtehing.com");

Everything looks fine and email ready to send.Here is the phpmailer config;

$mail = new PHPMailer(); 
$mail->IsSMTP();
$mail->From = "noreply@something.com"; 
$mail->FromName = "TEST";
$mail->WordWrap = 50;

foreach($recipients as $mail_add) {
    $mail->AddAddress($mail_add);
}
$mail->IsHTML(true);
$mail->Subject = "TEST Subject";
$mail->Body = $mail_body;
if(!$mail->Send()) {
    echo $mail->ErrorInfo;
} else { 
        echo "Mail sent...";
}

Everything is same when I test it. But sometimes email was sent. Sometimes it was not sent. Give me the following error : The following SMTP Error: Data not accepted.

I hope I explained

asked Apr 8, 2013 at 13:14

Yasin Yörük's user avatar

12

your server dosen’t allow different sender and username
you should config: $mail->From like $mail->Username

pb2q's user avatar

pb2q

57.6k18 gold badges145 silver badges146 bronze badges

answered Jan 2, 2014 at 16:54

J Ha's user avatar

J HaJ Ha

1,15212 silver badges16 bronze badges

7

set phpmailer to work in debug to see the «real» error behind the generic message ‘SMTP Error: data not accepted’ in our case the text in the message was triggering the smtp server spam filter.

  $email->SMTPDebug = true;

answered Feb 4, 2016 at 9:46

zzapper's user avatar

zzapperzzapper

4,6635 gold badges47 silver badges45 bronze badges

1

For AWS users who work with Amazon SES in conjunction with PHPMailer, this error also appears when your «from» mail sender isn’t a verified sender.

To add a verified sender:

  1. Log in to your Amazon AWS console: https://console.aws.amazon.com

  2. Select «Amazon SES» from your list of available AWS applications

  3. Select, under «Verified Senders», the «Email Addresses» —> «Verify a new email address»

  4. Navigate to that new sender’s email, click the confirmation e-mail’s link.

And you’re all set.

Uwe Keim's user avatar

Uwe Keim

39k56 gold badges175 silver badges289 bronze badges

answered Aug 29, 2014 at 1:21

Jonathan LeRoux's user avatar

2

Interestingly, I had the same exact issue and for me the problem was that my connection was timing out. To be able to see more details on my connections, I added $mail->SMTPDebug = 4; to my phpmailer (look up how to capture the debug since the default output function is echo).

Here’s the result:

SMTP -> get_lines(): $data was ""
SMTP -> get_lines(): $str is ""
SMTP -> get_lines(): $data is ""
SMTP -> get_lines(): timed-out (10 seconds)
SMTP -> FROM SERVER:
SMTP -> ERROR: DATA not accepted from server: 

The default timeout is set to 10 seconds. If your app can support more, add this line to your phpmailer:

$mail->Timeout = 20;

Nicolas Raoul's user avatar

Nicolas Raoul

57.9k57 gold badges218 silver badges366 bronze badges

answered Mar 8, 2017 at 16:22

phoenix's user avatar

phoenixphoenix

1,52119 silver badges11 bronze badges

3

Over a certain message of size, it messes up the content when setting through $mail->Body.

You can test it, if it works well with small messages, but doesn’t work with larger (over 4-6 kB), then this is the problem.

It seems to be the problem of $mail->Body, so you can get around this by setting the HTML body manually via $mail->MsgHTML($message). And then you can try to only add the non-html body by $mail->AltBody.

Hope that I could help, feel free to provide more details, information.

answered Apr 12, 2013 at 15:36

Adam Szabo's user avatar

Adam SzaboAdam Szabo

11.2k18 gold badges63 silver badges100 bronze badges

1

I was using just

$mail->Body    = $message;

and for some sumbited forms the PHP was returning the error:

SMTP Error: data not accepted.SMTP server error: DATA END command failed Detail: This message was classified as SPAM and may not be delivered
SMTP code: 550

I got it fixed adding this code after $mail->Body=$message :

$mail->MsgHTML = $message;
$mail->AltBody = $message;

answered Mar 22, 2018 at 17:00

André A.'s user avatar

3

Try to set the port on 26, this has fixed my problem with the message «data not accepted».

answered Dec 5, 2014 at 15:06

Matteo's user avatar

We send email via the Gmail SMTP servers, and we get this exact error from PHPMailer sometimes when we hit our Gmail send limits.

You can check if it’s the same thing happening to you by going into Gmail and trying to manually send an email. In our case that displays the more helpful error message about sending limits.

https://support.google.com/a/answer/166852?hl=en

answered Jul 18, 2017 at 6:08

brismuth's user avatar

brismuthbrismuth

34.7k3 gold badges34 silver badges37 bronze badges

I was hitting this error with phpMailer + Amazon SES. The phpMailer error is not very descriptive:

2: message: SERVER -> CLIENT: 554 Transaction failed: Expected ';', got ""
1: message: 
2: message: SMTP Error: data not accepted.

For me the issue was simply that I had the following as content type:

$phpmailer->ContentType = 'text/html; charset=utf-8rn';

But that it shouldn’t have the linebreak in it:

$phpmailer->ContentType = 'text/html; charset=utf-8';

… I suspect this was legacy code from our older version. So basically, triple check every $phpmailer setting you’re adding — the smallest detail counts.

answered Feb 26, 2019 at 14:37

Woody Hayday's user avatar

First you better set debug to TRUE:

$email->SMTPDebug = true;

Or temporary change value of public $SMTPDebug = false; in PHPMailer class.

And then you can see the full log in the browser.
For me it was too many emails per second:

...
SMTP -> FROM SERVER:XXX.XX.XX.X Ok
SMTP -> get_lines(): $data was ""
SMTP -> get_lines(): $str is "XXX.XX.XX.X Requested action not taken: too many emails per second "
SMTP -> get_lines(): $data is "XXX.XX.XX.X Requested action not taken: too many emails per second "
SMTP -> FROM SERVER:XXX.XX.XX.X Requested action not taken: too many emails per second
SMTP -> ERROR: DATA command not accepted from server: 550 5.7.0 Requested action not taken: too many emails per second
...

Thus I got to know what was the exact issue.

Nicolas Raoul's user avatar

Nicolas Raoul

57.9k57 gold badges218 silver badges366 bronze badges

answered May 9, 2019 at 11:52

Sadee's user avatar

SadeeSadee

2,92435 silver badges36 bronze badges

I was experiencing this same problem. In my instance the send mail was timing out because my Exchange server was relaying email to a server on the internet. That server had exceeded it’s bandwidth quota. Apparently php mailer has some built in timeout and it wasn’t long enough to see the actual message.

answered Nov 19, 2013 at 2:50

geekinit's user avatar

geekinitgeekinit

1,3452 gold badges14 silver badges17 bronze badges

In my case in cpanel i have ‘Register mail ids’ option where i add my email address and after 30 minutes it works fine with simple php mail function.

answered Feb 7, 2019 at 13:15

Dinesh Gurjar's user avatar

If you are using the Office 365 SMTP gateway then «SMTP Error: data not accepted.» is the response you will get if the mailbox is full (even if you are just sending from it).

Try deleting some messages out of the mailbox.

answered Mar 6, 2019 at 9:06

beingalex's user avatar

beingalexbeingalex

2,3964 gold badges31 silver badges70 bronze badges

In my case the problem was with the content of mail. When I changed content to simpler content without HTML, it worked. But after updating the phpmailer everything solved.

answered Mar 7, 2019 at 12:32

NightOwl's user avatar

NightOwlNightOwl

3292 silver badges20 bronze badges

in my case I was using AWS SES and I had to verify both «FromEmail» and «Recipient». Once done that I could send without problems.

answered Feb 5, 2020 at 4:04

Gabriel Cortes's user avatar

Mailgun sanbox error

With $PHPMailer->SMTPDebug = true; I found out that when using the mailgun sandbox domain, the email has to be added to an authorized recipients list (which is on the right panel of the sandbox domain overview)

answered Jun 1, 2021 at 7:25

Samuel Gfeller's user avatar

It happen too, when you used stripslashes or addslashesh or real_escape_string.

Avoid these things inside email body, when your email execution code completed then you can add these lines in bottom.

answered Mar 2, 2022 at 15:29

Saif Warsi's user avatar

1

I’ve been trying for hours to get PHP Mailer to work, but I keep getting;

2018-03-06 10:18:28 SMTP ERROR: DATA END command failed: 550 This message was classified as SPAM and may not be delivered
SMTP Error: data not accepted.
Message could not be sent. Mailer Error: SMTP Error: data not accepted.SMTP server error: DATA END command failed Detail: This message was classified as SPAM and may not be delivered SMTP code: 550

This is the code I am using to send the email through my sites mail thingy.

require '../ipn/PHPMailer-master/src/Exception.php';
require '../ipn/PHPMailer-master/src/PHPMailer.php';
require '../ipn/PHPMailer-master/src/SMTP.php';

$mail = new PHPMailer(true);                              // Passing `true` enables exceptions
try {
    //Server settings
    $mail->SMTPDebug = 2;                                 // Enable verbose debug output
    $mail->isSMTP();                                      // Set mailer to use SMTP
    $mail->Host = 'mail.site.pw';  // Specify main and backup SMTP servers
    $mail->SMTPAuth = true;                               // Enable SMTP authentication
    $mail->Username = 'magnolia@site.pw';                 // SMTP username
    $mail->Password = 'removed';                           // SMTP password
    $mail->SMTPSecure = 'ssl';                            // Enable TLS encryption, `ssl` also accepted
    $mail->Port = 465;                                    // TCP port to connect to
    
    $mail->setFrom('magnolia@antrax.pw');
    $mail->addAddress('lunasityboi@gmail.com');               // Name is optional
    
    //Content
    $mail->isHTML(true);                                  // Set email format to HTML
    $mail->Subject = 'Here is the subject';
    $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->send();
    echo 'Message has been sent';
} catch (Exception $e) {
    echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo;
}

This is what I get from debugging;

2018-03-06 10:18:28 SERVER -> CLIENT: 220-cpanel.hostslayer.com ESMTP Exim 4.89_1 #1 Tue, 06 Mar 2018 02:18:28 -0800 220-We do not authorize the use of this system to transport unsolicited, 220 and/or bulk e-mail.
2018-03-06 10:18:28 CLIENT -> SERVER: EHLO antrax.pw
2018-03-06 10:18:28 SERVER -> CLIENT: 250-cpanel.hostslayer.com Hello antrax.pw [192.152.0.152]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN250 HELP
2018-03-06 10:18:28 CLIENT -> SERVER: AUTH LOGIN
2018-03-06 10:18:28 SERVER -> CLIENT: 334 VXNlcm5hbWU6
2018-03-06 10:18:28 CLIENT -> SERVER: <credentials hidden>
2018-03-06 10:18:28 SERVER -> CLIENT: 334 UGFzc3dvcmQ6
2018-03-06 10:18:28 CLIENT -> SERVER: <credentials hidden>
2018-03-06 10:18:28 SERVER -> CLIENT: 235 Authentication succeeded
2018-03-06 10:18:28 CLIENT -> SERVER: MAIL FROM:<magnolia@antrax.pw>
2018-03-06 10:18:28 SERVER -> CLIENT: 250 OK
2018-03-06 10:18:28 CLIENT -> SERVER: RCPT TO:<lunasityboi@gmail.com>
2018-03-06 10:18:28 SERVER -> CLIENT: 250 Accepted
2018-03-06 10:18:28 CLIENT -> SERVER: DATA
2018-03-06 10:18:28 SERVER -> CLIENT: 354 Enter message, ending with "." on a line by itself
2018-03-06 10:18:28 CLIENT -> SERVER: Date: Tue, 6 Mar 2018 10:18:28 +0000
2018-03-06 10:18:28 CLIENT -> SERVER: To: lunasityboi@gmail.com
2018-03-06 10:18:28 CLIENT -> SERVER: From: magnolia@antrax.pw
2018-03-06 10:18:28 CLIENT -> SERVER: Subject: Here is the subject
2018-03-06 10:18:28 CLIENT -> SERVER: Message-ID: <uW9WATC68PHGC9hZlxf2mCKPzDFtWMnssWKM4rJDuY@antrax.pw>
2018-03-06 10:18:28 CLIENT -> SERVER: X-Mailer: PHPMailer 6.0.3 (https://github.com/PHPMailer/PHPMailer)
2018-03-06 10:18:28 CLIENT -> SERVER: MIME-Version: 1.0
2018-03-06 10:18:28 CLIENT -> SERVER: Content-Type: multipart/alternative;
2018-03-06 10:18:28 CLIENT -> SERVER: boundary="b1_uW9WATC68PHGC9hZlxf2mCKPzDFtWMnssWKM4rJDuY"
2018-03-06 10:18:28 CLIENT -> SERVER: Content-Transfer-Encoding: 8bit
2018-03-06 10:18:28 CLIENT -> SERVER: 
2018-03-06 10:18:28 CLIENT -> SERVER: This is a multi-part message in MIME format.
2018-03-06 10:18:28 CLIENT -> SERVER: --b1_uW9WATC68PHGC9hZlxf2mCKPzDFtWMnssWKM4rJDuY
2018-03-06 10:18:28 CLIENT -> SERVER: Content-Type: text/plain; charset=us-ascii
2018-03-06 10:18:28 CLIENT -> SERVER: 
2018-03-06 10:18:28 CLIENT -> SERVER: This is the body in plain text for non-HTML mail clients
2018-03-06 10:18:28 CLIENT -> SERVER: 
2018-03-06 10:18:28 CLIENT -> SERVER: --b1_uW9WATC68PHGC9hZlxf2mCKPzDFtWMnssWKM4rJDuY
2018-03-06 10:18:28 CLIENT -> SERVER: Content-Type: text/html; charset=us-ascii
2018-03-06 10:18:28 CLIENT -> SERVER: 
2018-03-06 10:18:28 CLIENT -> SERVER: This is the HTML message body <b>in bold!</b>
2018-03-06 10:18:28 CLIENT -> SERVER: 
2018-03-06 10:18:28 CLIENT -> SERVER: 
2018-03-06 10:18:28 CLIENT -> SERVER: --b1_uW9WATC68PHGC9hZlxf2mCKPzDFtWMnssWKM4rJDuY--
2018-03-06 10:18:28 CLIENT -> SERVER: 
2018-03-06 10:18:28 CLIENT -> SERVER: .
2018-03-06 10:18:28 SERVER -> CLIENT: 550 This message was classified as SPAM and may not be delivered
2018-03-06 10:18:28 SMTP ERROR: DATA END command failed: 550 This message was classified as SPAM and may not be delivered
SMTP Error: data not accepted.
Message could not be sent. Mailer Error: SMTP Error: data not accepted.SMTP server error: DATA END command failed Detail: This message was classified as SPAM and may not be delivered SMTP code: 550

Содержание

  1. Website sending email
  2. Popular Topics in Microsoft Office 365
  3. 15 Replies
  4. Read these next.
  5. poor wifi, school’s third floor
  6. Need help crafting a job posting for an IT Pro
  7. Snap! — AI Eye Contact, Mine Batteries, Headset-free Metaverse, D&D Betrayal
  8. Spark! Pro series – 13th January 2023

Website sending email

I am trying to get my website to send out emails.

We have our domain registered at godaddy and the website is hosted at a2. we use o365 for email.

Before we switched to o365 when someone would place an order an email would go out to the customer. Since we switched the emails fail. I added an spf record with the a2 server ip address and added a connector in o365. i set in the website cpanel for remote email

This is the error I am getting

«ErrorMessage could not be sent.
Mailer Error: SMTP Error: data not accepted.SMTP server error: DATA END command failed Detail: 5.7.60 SMTP; Client does not have permissions to send as this sender [BN6PR11MB1857.namprd11.prod.outlook.com] SMTP code: 550 «

Popular Topics in Microsoft Office 365

Is there a send on behalf of setting on your email account that you need to add permissions to?

  • check 174 Best Answers
  • thumb_up 465 Helpful Votes

Is there any need to relay through O365? Why not send directly from the web server after defining the SPF record?

This link might help you as well.

dont understand what you mean «send on behalf of» . The website is acting like an email client and sending out the emails using o365 credentials. Where would i add permissions for that?

I am using method one. Its the only one that i have the option for. i posted a picture of my possible settings that i have available. I guess I can use a different smtp server if I setup an address somewhere but not sure where I would find one that works.

my spf record looks like this v=spf1 ip4:00.00.00.00 include:spf.protection.outlook.com

all . i have in there the correct ip of the a2 server that is hosting the site.

  • check 174 Best Answers
  • thumb_up 465 Helpful Votes

Make sure you are using the SMTP server listed in the technote — different O365 SMTP servers allow different things.

I have tried both smtp.outlook.com and outlook.office365.com. both give the error

  • check 174 Best Answers
  • thumb_up 465 Helpful Votes

The user account you are using is a licensed account and not a shared mailbox?

  • check 174 Best Answers
  • thumb_up 465 Helpful Votes

Only other thing I can think of is the «from» field in the email itself doesn’t match the user account account being used to login to the smtp server.

  • check 174 Best Answers
  • thumb_up 465 Helpful Votes

What «connector» did you add on the O365 end — you don’t need one using Method 1 so that might be an issue.

Let me check the email send from field.

I setup the connector based on o365 support that sometimes it helps even for method one

  • check 174 Best Answers
  • thumb_up 465 Helpful Votes

I think for the connector to even come into play, you need to use your O365 MX record for the SMTP server — yourdomain-com.mail.protection.outlook.com, etc.

As noted you do not need a separate connector if you are authenticating with an account, it is useless. If you needed an anonymous IP restricted send, then you would use a separate connector.

I’m agree with you mate.

I am now getting this error after i made the from field match the authenticating email

This topic has been locked by an administrator and is no longer open for commenting.

To continue this discussion, please ask a new question.

Read these next.

poor wifi, school’s third floor

I work as a help desk technician at a high school for a school district. Teachers/students on the building’s third floor have been reporting poor wifi, with their Chromebooks/laptops etc experiencing slow connectivity and random disconnections. We hav.

Need help crafting a job posting for an IT Pro

I’d really appreciate some thoughts and advice. I’m looking to hire an IT pro to be our resident go-to for all things IT (device support, SQL Server, network admin, etc) but who also is interested in learning — or even has some experience in — the.

Snap! — AI Eye Contact, Mine Batteries, Headset-free Metaverse, D&D Betrayal

Your daily dose of tech news, in brief. Welcome to the Snap! Flashback: January 13, 1874: Adding Machine Patented (Read more HERE.) Bonus Flashback: January 13, 1990: Astronauts awakened to the song Attack of the Killer Tomatoes (Read mor.

Spark! Pro series – 13th January 2023

Happy Friday the 13th! This day has a reputation for being unlucky, but I hope that you’ll be able to turn that around and have a great day full of good luck and good fortune. Whether you’re superstitious or not, .

Источник

I am new to WP, trying to learn the ropes.
for email we are using WP Mail SMTP.
The below is the complete log:

Versions:
WordPress: 5.4.4
WordPress MS: No
PHP: 5.6.40
WP Mail SMTP: 2.6.0

Params:
Mailer: smtp
Constants: No
ErrorInfo: SMTP Error: data not accepted.SMTP server error: DATA END command failed Detail: : End-of-data rejected: user not permitted to relay
SMTP code: 554 Additional SMTP info: 5.7.1
Host: mail.prglolinks.com
Port: 587
SMTPSecure: string(0) ""
SMTPAutoTLS: bool(false)
SMTPAuth: bool(true)

Server:
OpenSSL: OpenSSL 1.0.1e-fips 11 Feb 2013

Debug:
Mailer: Other SMTP
SMTP Error: data not accepted.

SMTP Debug:
2021-02-23 04:19:20 Connection: opening to mail.prglolinks.com:587, timeout=300, options=array ()

2021-02-23 04:19:21 Connection: opened

2021-02-23 04:19:21 SERVER -> CLIENT: 220 smtp.hostedemail.com ESMTP

2021-02-23 04:19:21 CLIENT -> SERVER: EHLO www.prglolinks.com

2021-02-23 04:19:22 SERVER -> CLIENT: 250-omf10.hostedemail.com250-PIPELINING250-SIZE 36700160250-ETRN250-AUTH PLAIN LOGIN250-AUTH=PLAIN LOGIN250-ENHANCEDSTATUSCODES250-8BITMIME250-DSN250 CHUNKING

2021-02-23 04:19:22 CLIENT -> SERVER: AUTH LOGIN

2021-02-23 04:19:22 SERVER -> CLIENT: 334 VXNlcm5hbWU6

2021-02-23 04:19:22 CLIENT -> SERVER: aW5mb0Bwcmdsb2xpbmtzLmNvbQ==

2021-02-23 04:19:22 SERVER -> CLIENT: 334 UGFzc3dvcmQ6

2021-02-23 04:19:22 CLIENT -> SERVER: UFJnbG8hMzc5MDk=

2021-02-23 04:19:23 SERVER -> CLIENT: 235 2.7.0 Authentication successful

2021-02-23 04:19:23 CLIENT -> SERVER: MAIL FROM:<info@prglolinks.com>

2021-02-23 04:19:23 SERVER -> CLIENT: 250 2.1.0 Ok

2021-02-23 04:19:23 CLIENT -> SERVER: RCPT TO:<paddy@prglolinks.com>

2021-02-23 04:19:23 SERVER -> CLIENT: 250 2.1.5 Ok

2021-02-23 04:19:23 CLIENT -> SERVER: DATA

2021-02-23 04:19:24 SERVER -> CLIENT: 354 End data with <CR><LF>.<CR><LF>

2021-02-23 04:19:24 CLIENT -> SERVER: Date: Tue, 23 Feb 2021 04:19:20 +0000

2021-02-23 04:19:24 CLIENT -> SERVER: To: paddy@prglolinks.com

2021-02-23 04:19:24 CLIENT -> SERVER: From: "P.R. Glolinks" <info@prglolinks.com>

2021-02-23 04:19:24 CLIENT -> SERVER: Subject: WP Mail SMTP: HTML Test email to paddy@prglolinks.com

2021-02-23 04:19:24 CLIENT -> SERVER: Message-ID: <130a12d526880b9e3232d7f528a9b595@www.prglolinks.com>

2021-02-23 04:19:24 CLIENT -> SERVER: X-Mailer: WPMailSMTP/Mailer/smtp 2.6.0

2021-02-23 04:19:24 CLIENT -> SERVER: X-Mailer-Type: WPMailSMTP/Admin/Test

2021-02-23 04:19:24 CLIENT -> SERVER: MIME-Version: 1.0

2021-02-23 04:19:24 CLIENT -> SERVER: Content-Type: text/html; charset=UTF-8

2021-02-23 04:19:24 CLIENT -> SERVER:

2021-02-23 04:19:24 CLIENT -> SERVER: <!doctype html>

2021-02-23 04:19:24 CLIENT -> SERVER: <html lang="en">

2021-02-23 04:19:24 CLIENT -> SERVER: <head>

2021-02-23 04:19:24 CLIENT -> SERVER: <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

2021-02-23 04:19:24 CLIENT -> SERVER: <meta http-equiv="X-UA-Compatible" content="IE=edge">

2021-02-23 04:19:24 CLIENT -> SERVER: <meta name="viewport" content="width=device-width">

2021-02-23 04:19:24 CLIENT -> SERVER: <title>WP Mail SMTP Test Email</title>

2021-02-23 04:19:24 CLIENT -> SERVER: <style type="text/css">@media only screen and (max-width: 599px) {table.body .container {width: 95% !important;}.header {padding: 15px 15px 12px 15px !important;}.header img {width: 200px !important;height: auto !important;}.content, .aside {padding: 30px 40px 20px 40px !important;}}</style>

2021-02-23 04:19:24 CLIENT -> SERVER: </head>

2021-02-23 04:19:24 CLIENT -> SERVER: <body style="height: 100% !important; width: 100% !important; min-width: 100%; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-font-smoothing: antialiased !important; -moz-osx-font-smoothing: grayscale !important; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; padding: 0; margin: 0; Margin: 0; font-size: 14px; mso-line-height-rule: exactly; line-height: 140%; background-color: #f1f1f1; text-align: center;">

2021-02-23 04:19:24 CLIENT -> SERVER: <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" class="body" style="border-collapse: collapse; border-spacing: 0; vertical-align: top; mso-table-lspace: 0pt; mso-table-rspace: 0pt; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; height: 100% !important; width: 100% !important; min-width: 100%; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-font-smoothing: antialiased !important; -moz-osx-font-smoothing: grayscale !important; background-color: #f1f1f1; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; padding: 0; margin: 0; Margin: 0; text-align: left; font-size: 14px; mso-line-height-rule: exactly; line-height: 140%;">

2021-02-23 04:19:24 CLIENT -> SERVER: <tr style="padding: 0; vertical-align: top; text-align: left;">

2021-02-23 04:19:24 CLIENT -> SERVER: <td align="center" valign="top" class="body-inner wp-mail-smtp" style="word-wrap: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; mso-table-lspace: 0pt; mso-table-rspace: 0pt; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; padding: 0; margin: 0; Margin: 0; font-size: 14px; mso-line-height-rule: exactly; line-height: 140%; text-align: center;">

2021-02-23 04:19:24 CLIENT -> SERVER: <!-- Container -->

2021-02-23 04:19:24 CLIENT -> SERVER: <table border="0" cellpadding="0" cellspacing="0" class="container" style="border-collapse: collapse; border-spacing: 0; padding: 0; vertical-align: top; mso-table-lspace: 0pt; mso-table-rspace: 0pt; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; width: 600px; margin: 0 auto 30px auto; Margin: 0 auto 30px auto; text-align: inherit;">

2021-02-23 04:19:24 CLIENT -> SERVER: <!-- Header -->

2021-02-23 04:19:24 CLIENT -> SERVER: <tr style="padding: 0; vertical-align: top; text-align: left;">

2021-02-23 04:19:24 CLIENT -> SERVER: <td align="center" valign="middle" class="header" style="word-wrap: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; mso-table-lspace: 0pt; mso-table-rspace: 0pt; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; margin: 0; Margin: 0; font-size: 14px; mso-line-height-rule: exactly; line-height: 140%; text-align: center; padding: 30px 30px 22px 30px;">

2021-02-23 04:19:24 CLIENT -> SERVER: <img src="http://www.prglolinks.com/wp-content/plugins/wp-mail-smtp/assets/images/email/wp-mail-smtp.png" width="250" alt="WP Mail SMTP Logo" style="outline: none; text-decoration: none; max-width: 100%; clear: both; -ms-interpolation-mode: bicubic; display: inline-block !important; width: 250px;">

2021-02-23 04:19:24 CLIENT -> SERVER: </td>

2021-02-23 04:19:24 CLIENT -> SERVER: </tr>

2021-02-23 04:19:24 CLIENT -> SERVER: <!-- Content -->

2021-02-23 04:19:24 CLIENT -> SERVER: <tr style="padding: 0; vertical-align: top; text-align: left;">

2021-02-23 04:19:24 CLIENT -> SERVER: <td align="left" valign="top" class="content" style="word-wrap: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; mso-table-lspace: 0pt; mso-table-rspace: 0pt; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; margin: 0; Margin: 0; text-align: left; font-size: 14px; mso-line-height-rule: exactly; line-height: 140%; background-color: #ffffff; padding: 60px 75px 45px 75px; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; border-left: 1px solid #ddd; border-top: 3px solid #809eb0;">

2021-02-23 04:19:24 CLIENT -> SERVER: <div class="success" style="text-align: center;">

2021-02-23 04:19:24 CLIENT -> SERVER: <p class="check" style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; padding: 0; font-size: 14px; mso-line-height-rule: exactly; line-height: 140%; margin: 0 auto 16px auto; Margin: 0 auto 16px auto; text-align: center;">

2021-02-23 04:19:24 CLIENT -> SERVER: <img src="http://www.prglolinks.com/wp-content/plugins/wp-mail-smtp/assets/images/email/icon-check.png" width="70" alt="Success" style="outline: none; text-decoration: none; max-width: 100%; clear: both; -ms-interpolation-mode: bicubic; display: block; margin: 0 auto 0 auto; Margin: 0 auto 0 auto; width: 50px;">

2021-02-23 04:19:24 CLIENT -> SERVER: </p>

2021-02-23 04:19:24 CLIENT -> SERVER: <p class="text-extra-large text-center congrats" style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; padding: 0; mso-line-height-rule: exactly; line-height: 140%; font-size: 20px; text-align: center; margin: 0 0 20px 0; Margin: 0 0 20px 0;">

2021-02-23 04:19:24 CLIENT -> SERVER: Congrats, test email was sent successfully!

2021-02-23 04:19:24 CLIENT -> SERVER: </p>

2021-02-23 04:19:24 CLIENT -> SERVER: <p class="text-large" style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; padding: 0; text-align: left; mso-line-height-rule: exactly; line-height: 140%; margin: 0 0 15px 0; Margin: 0 0 15px 0; font-size: 16px;">

2021-02-23 04:19:24 CLIENT -> SERVER: Thank you for trying out WP Mail SMTP. We're on a mission to make sure that your emails actually get delivered.

2021-02-23 04:19:24 CLIENT -> SERVER: </p>

2021-02-23 04:19:24 CLIENT -> SERVER: <p class="text-large" style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; padding: 0; text-align: left; mso-line-height-rule: exactly; line-height: 140%; margin: 0 0 15px 0; Margin: 0 0 15px 0; font-size: 16px;">

2021-02-23 04:19:24 CLIENT -> SERVER: If you find this free plugin useful, please consider giving WP Mail SMTP Pro a try!

2021-02-23 04:19:24 CLIENT -> SERVER: </p>

2021-02-23 04:19:24 CLIENT -> SERVER: <p class="signature" style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; padding: 0; font-size: 14px; mso-line-height-rule: exactly; line-height: 140%; text-align: left; margin: 20px 0 0 0; Margin: 20px 0 0 0;">

2021-02-23 04:19:24 CLIENT -> SERVER: <img src="http://www.prglolinks.com/wp-content/plugins/wp-mail-smtp/assets/images/email/signature.png" width="180" alt="Signature" style="outline: none; text-decoration: none; max-width: 100%; clear: both; -ms-interpolation-mode: bicubic; width: 180px; display: block; margin: 0 0 0 0; Margin: 0 0 0 0;">

2021-02-23 04:19:24 CLIENT -> SERVER: </p>

2021-02-23 04:19:24 CLIENT -> SERVER: <p style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; padding: 0; text-align: left; font-size: 14px; mso-line-height-rule: exactly; line-height: 140%; margin: 0 0 15px 0; Margin: 0 0 15px 0;">

2021-02-23 04:19:24 CLIENT -> SERVER: Jared Atchison<br>Lead Developer, WP Mail SMTP

2021-02-23 04:19:24 CLIENT -> SERVER: </p>

2021-02-23 04:19:24 CLIENT -> SERVER: </div>

2021-02-23 04:19:24 CLIENT -> SERVER: </td>

2021-02-23 04:19:24 CLIENT -> SERVER: </tr>

2021-02-23 04:19:24 CLIENT -> SERVER: <!-- Aside -->

2021-02-23 04:19:24 CLIENT -> SERVER: <tr style="padding: 0; vertical-align: top; text-align: left;">

2021-02-23 04:19:24 CLIENT -> SERVER: <td align="left" valign="top" class="aside upsell-mi" style="word-wrap: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; mso-table-lspace: 0pt; mso-table-rspace: 0pt; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; margin: 0; Margin: 0; font-size: 14px; mso-line-height-rule: exactly; line-height: 140%; background-color: #f8f8f8; border-top: 1px solid #dddddd; border-right: 1px solid #dddddd; border-bottom: 1px solid #dddddd; border-left: 1px solid #dddddd; text-align: center !important; padding: 30px 75px 25px 75px;">

2021-02-23 04:19:24 CLIENT -> SERVER: <h6 style="padding: 0; color: #444444; word-wrap: normal; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: bold; mso-line-height-rule: exactly; line-height: 130%; font-size: 18px; text-align: center; margin: 0 0 15px 0; Margin: 0 0 15px 0;">

2021-02-23 04:19:24 CLIENT -> SERVER: Unlock More Features with WP Mail SMTP Pro

2021-02-23 04:19:24 CLIENT -> SERVER: </h6>

2021-02-23 04:19:24 CLIENT -> SERVER: <p class="text-large" style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; padding: 0; mso-line-height-rule: exactly; line-height: 140%; margin: 0 0 15px 0; Margin: 0 0 15px 0; font-size: 16px; text-align: center;">

2021-02-23 04:19:24 CLIENT -> SERVER: Email Logs and Notification Controls<br>

2021-02-23 04:19:24 CLIENT -> SERVER: Amazon SES / Outlook.com / Office 365 integrations<br>

2021-02-23 04:19:24 CLIENT -> SERVER: Access to our world class support team

2021-02-23 04:19:24 CLIENT -> SERVER: </p>

2021-02-23 04:19:24 CLIENT -> SERVER: <p class="text-large last" style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; padding: 0; mso-line-height-rule: exactly; line-height: 140%; font-size: 13px; text-align: center; margin: 0 0 0 0; Margin: 0 0 0 0;">

2021-02-23 04:19:24 CLIENT -> SERVER: WP Mail SMTP users get <span style="font-weight:700;color:#218900;">$50 off</span>, automatically applied at checkout

2021-02-23 04:19:24 CLIENT -> SERVER: </p>

2021-02-23 04:19:24 CLIENT -> SERVER: <center style="width: 100%;">

2021-02-23 04:19:24 CLIENT -> SERVER: <table class="button large expanded orange" style="border-collapse: collapse; border-spacing: 0; padding: 0; vertical-align: top; text-align: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #e27730; width: 100% !important;">

2021-02-23 04:19:24 CLIENT -> SERVER: <tr style="padding: 0; vertical-align: top; text-align: left;">

2021-02-23 04:19:24 CLIENT -> SERVER: <td class="button-inner" style="word-wrap: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; mso-table-lspace: 0pt; mso-table-rspace: 0pt; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #444; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; margin: 0; Margin: 0; text-align: left; font-size: 14px; mso-line-height-rule: exactly; line-height: 100%; padding: 20px 0 20px 0;">

2021-02-23 04:19:24 CLIENT -> SERVER: <table style="border-collapse: collapse; border-spacing: 0; padding: 0; vertical-align: top; text-align: left; mso-table-lspace: 0pt; mso-table-rspace: 0pt; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; width: 100% !important;">

2021-02-23 04:19:24 CLIENT -> SERVER: <tr style="padding: 0; vertical-align: top; text-align: left;">

2021-02-23 04:19:24 CLIENT -> SERVER: <td style="word-wrap: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; mso-table-lspace: 0pt; mso-table-rspace: 0pt; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: normal; padding: 0; margin: 0; Margin: 0; font-size: 14px; text-align: center; color: #ffffff; background: #e27730; border: 1px solid #c45e1b; border-bottom: 3px solid #c45e1b; mso-line-height-rule: exactly; line-height: 100%;">

2021-02-23 04:19:24 CLIENT -> SERVER: <a href="https://wpmailsmtp.com/lite-upgrade/?utm_source=WordPress&utm_medium=plugin-settings&utm_campaign=liteplugin&utm_content=email-test" style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; margin: 0; Margin: 0; font-family: Helvetica, Arial, sans-serif; font-weight: bold; color: #ffffff; text-decoration: none; display: inline-block; border: 0 solid #c45e1b; mso-line-height-rule: exactly; line-height: 100%; padding: 14px 20px 12px 20px; font-size: 20px; text-align: center; width: 100%; padding-left: 0; padding-right: 0;">

2021-02-23 04:19:24 CLIENT -> SERVER: Upgrade to WP Mail SMTP Pro Today

2021-02-23 04:19:24 CLIENT -> SERVER: </a>

2021-02-23 04:19:24 CLIENT -> SERVER: </td>

2021-02-23 04:19:24 CLIENT -> SERVER: </tr>

2021-02-23 04:19:24 CLIENT -> SERVER: </table>

2021-02-23 04:19:24 CLIENT -> SERVER: </td>

2021-02-23 04:19:24 CLIENT -> SERVER: </tr>

2021-02-23 04:19:24 CLIENT -> SERVER: </table>

2021-02-23 04:19:24 CLIENT -> SERVER: </center>

2021-02-23 04:19:24 CLIENT -> SERVER: </td>

2021-02-23 04:19:24 CLIENT -> SERVER: </tr>

2021-02-23 04:19:24 CLIENT -> SERVER: </table>

2021-02-23 04:19:24 CLIENT -> SERVER: </td>

2021-02-23 04:19:24 CLIENT -> SERVER: </tr>

2021-02-23 04:19:24 CLIENT -> SERVER: </table>

2021-02-23 04:19:24 CLIENT -> SERVER: </body>

2021-02-23 04:19:24 CLIENT -> SERVER: </html>

2021-02-23 04:19:24 CLIENT -> SERVER:

2021-02-23 04:19:24 CLIENT -> SERVER:

2021-02-23 04:19:24 CLIENT -> SERVER:

2021-02-23 04:19:24 CLIENT -> SERVER: .

2021-02-23 04:19:24 SERVER -> CLIENT: 554 5.7.1 <END-OF-MESSAGE>: End-of-data rejected: user not permitted to relay

2021-02-23 04:19:24 SMTP ERROR: DATA END command failed: 554 5.7.1 <END-OF-MESSAGE>: End-of-data rejected: user not permitted to relay

SMTP Error: data not accepted.

Понравилась статья? Поделить с друзьями:

Читайте также:

  • Smtp error could not connect to smtp host что это
  • Slui exe 0x2a 0x80041002 как исправить
  • Slrr editor выдает ошибку
  • Smtp error could not connect to smtp host перевод
  • Smtp error could not authenticate яндекс

  • 0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

    0 комментариев
    Старые
    Новые Популярные
    Межтекстовые Отзывы
    Посмотреть все комментарии