Quantcast
Channel: WordPress.org Forums » [WP Mail SMTP by WPForms - The Most Popular SMTP and Email Log Plugin] Support
Viewing all 4992 articles
Browse latest View live

New user email activation not sending with WPMU

$
0
0

Replies: 0

When I switched over to use this plugin on a multisite. WPMU stopped sending the new user activation emails. I tested this by setting up a fresh WP Multisite using the 2017 theme, installing the plugin, and testing.

When you activate the plugin, the email is not sent, when you de-activate it, the email is sent properly.

I have the authentication stored in wp-config using php constants as I have for years on other sites.

Sidenote. The other WP emails send fine, password reset, this plugins test routine, etc. There just seems to be a conflict with the new user email shown below.

Hi,
You’ve been invited to join ‘Test1’ at
http://xxxxxxxx.com with the role of Administrator.
If you do not want to join this site please ignore
this email. This invitation will expire in a few days.

Please click the following link to activate your user account:
http://xxxxxxxxx.com/wp-activate.php?key=3bbdf8dfa8461833


Invalid address: (setFrom) Message on testing

$
0
0

Replies: 0

Invalid address: (setFrom) Message on testing. Can you please check that why this error is coming here.

Cannot Get to Work with Google Email Account

$
0
0

Replies: 0

Hello!

Up until a day ago, my contact forms via WP Forms were working perfectly. I changed my gmail password yesterday and made that edit in the WP Mail SMTP settings, but now after activating a new form on my website, it is successfully submitted, but I do not receive them in my gmail accounts. I have included the ‘Test Message’ when I send a test email. Any thoughts?

. . .

Test Message Sent
The result was:
bool(false)
The full debugging output is shown below:
object(PHPMailer)#2478 (76) {
[“Version”]=>
string(6) “5.2.22”
[“Priority”]=>
NULL
[“CharSet”]=>
string(10) “iso-8859-1”
[“ContentType”]=>
string(10) “text/plain”
[“Encoding”]=>
string(4) “8bit”
[“ErrorInfo”]=>
string(0) “”
[“From”]=>
string(14) “root@localhost”
[“FromName”]=>
string(9) “Root User”
[“Sender”]=>
string(0) “”
[“ReturnPath”]=>
string(0) “”
[“Subject”]=>
string(0) “”
[“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) “mail”
[“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(9) “localhost”
[“Port”]=>
int(25)
[“Helo”]=>
string(0) “”
[“SMTPSecure”]=>
string(0) “”
[“SMTPAutoTLS”]=>
bool(true)
[“SMTPAuth”]=>
bool(false)
[“SMTPOptions”]=>
array(0) {
}
[“Username”]=>
string(0) “”
[“Password”]=>
string(0) “”
[“AuthType”]=>
string(0) “”
[“Realm”]=>
string(0) “”
[“Workstation”]=>
string(0) “”
[“Timeout”]=>
int(300)
[“SMTPDebug”]=>
bool(true)
[“Debugoutput”]=>
string(4) “echo”
[“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(0) {
}
[“cc”:protected]=>
array(0) {
}
[“bcc”:protected]=>
array(0) {
}
[“ReplyTo”:protected]=>
array(0) {
}
[“all_recipients”:protected]=>
array(0) {
}
[“RecipientsQueue”:protected]=>
array(0) {
}
[“ReplyToQueue”:protected]=>
array(0) {
}
[“attachment”:protected]=>
array(0) {
}
[“CustomHeader”:protected]=>
array(0) {
}
[“lastMessageID”:protected]=>
string(0) “”
[“message_type”:protected]=>
string(0) “”
[“boundary”:protected]=>
array(0) {
}
[“language”:protected]=>
array(0) {
}
[“error_count”:protected]=>
int(0)
[“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(true)
[“uniqueid”:protected]=>
string(0) “”
}

SSL operation failed with code 1

$
0
0

Replies: 0

Hi guys,
test email log says: string(43) “SMTP Error: Could not connect to SMTP host.” and I got this error on my apache log:

PHP Warning: stream_socket_enable_crypto(): SSL operation failed with code 1. OpenSSL Error messages:\nerror:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed in /var/www/vhosts/xxxxxxxxxxxx.it/httpdocs/wp-includes/class-smtp.php on line 368\n', referer: https://xxxxxxxxxxxx.it/xxxxxxxxxxxx/wp-admin/options-general.php?page=wp-mail-smtp%2Fwp_mail_smtp.php

These are my settings (doublechecked and perfectly working with my mail client):
from email: info@axxxxxxxxxxxx.it
SMTP host: mail.xxxxxxxxxxxx.it
SMTP Port: 25
“No encryption” selected
“Yes: Use SMTP authentication” selected, with theese settings: username info@xxxxxxxxxxxx.it and password xxxxxxxxxxxx

I’ve googled a while and I’ve found this suggestion, wich does NOT solve my problem:

add_filter('wp_mail_smtp_custom_options','my_wp_mail_smtp_custom_options');
function my_wp_mail_smtp_custom_options($phpmailer) {
	$phpmailer->SMTPOptions = array(
		'ssl' => array(
			'verify_peer' => false,
			'verify_peer_name' => false,
			'allow_self_signed' => true
		)
	);
	return $phpmailer;
}

My server runs PHP 7.1.6 and mounts a COMODO SSL Certificate.
Any idea on what to investigate?

Thanks in advance,
Christian

–update–
I found that by changing “SMTPAutoTLS = true” to “SMTPAutoTLS = false” into class-phpmailer.php solves the problem, but I guess it is not the correct way to proceed. Any advice?

Plugin not working with sendpulse

$
0
0

Replies: 0

Hi, I have uninstalled your plugin as because it wasn’t working with sendpulse. test mail was not going through. I have already talked with sendpulse team and they told us its plugin problem. Now i have installed the easy wp smtp and its working properly, I recommend you to correct it. may be you are loosing your userbase. please see this error below.

Test Message Sent
The result was:
bool(false)
The full debugging output is shown below:
object(PHPMailer)#5383 (76) {
  ["Version"]=>
  string(6) "5.2.22"
  ["Priority"]=>
  NULL
  ["CharSet"]=>
  string(5) "UTF-8"
  ["ContentType"]=>
  string(10) "text/plain"
  ["Encoding"]=>
  string(4) "7bit"
  ["ErrorInfo"]=>
  string(43) "SMTP Error: Could not connect to SMTP host."
  ["From"]=>
  string(15) "info@krieta.com"
  ["FromName"]=>
  string(12) "Krieta Homes"
  ["Sender"]=>
  string(15) "info@krieta.com"
  ["ReturnPath"]=>
  string(0) ""
  ["Subject"]=>
  string(48) "WP Mail SMTP: Test mail to krietahomes@gmail.com"
  ["Body"]=>
  string(68) "This is a test email generated by the WP Mail SMTP WordPress plugin."
  ["AltBody"]=>
  string(0) ""
  ["Ical"]=>
  string(0) ""
  ["MIMEBody":protected]=>
  string(69) "This is a test email generated by the WP Mail SMTP WordPress plugin.
"
  ["MIMEHeader":protected]=>
  string(347) "Date: Sat, 5 Aug 2017 20:41:54 +0000
To: krietahomes@gmail.com
From: Krieta Homes
Subject: WP Mail SMTP: Test mail to krietahomes@gmail.com
Message-ID:
X-Mailer: PHPMailer 5.2.22 (https://github.com/PHPMailer/PHPMailer)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8

"
  ["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(30) "Sat, 5 Aug 2017 20:41:54 +0000"
  ["Host"]=>
  string(14) "smtp-pulse.com"
  ["Port"]=>
  string(4) "2525"
  ["Helo"]=>
  string(0) ""
  ["SMTPSecure"]=>
  string(0) ""
  ["SMTPAutoTLS"]=>
  bool(true)
  ["SMTPAuth"]=>
  bool(true)
  ["SMTPOptions"]=>
  array(0) {
  }
  ["Username"]=>
  string(21) "krietahomes@gmail.com"
  ["Password"]=>
  string(10) "something287"
  ["AuthType"]=>
  string(0) ""
  ["Realm"]=>
  string(0) ""
  ["Workstation"]=>
  string(0) ""
  ["Timeout"]=>
  int(300)
  ["SMTPDebug"]=>
  bool(true)
  ["Debugoutput"]=>
  string(4) "echo"
  ["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]=>
  object(SMTP)#5387 (14) {
    ["Version"]=>
    string(6) "5.2.22"
    ["SMTP_PORT"]=>
    int(25)
    ["CRLF"]=>
    string(2) "
"
    ["do_debug"]=>
    bool(true)
    ["Debugoutput"]=>
    string(4) "echo"
    ["do_verp"]=>
    bool(false)
    ["Timeout"]=>
    int(300)
    ["Timelimit"]=>
    int(300)
    ["smtp_transaction_id_patterns":protected]=>
    array(3) {
      ["exim"]=>
      string(21) "/[0-9]{3} OK id=(.*)/"
      ["sendmail"]=>
      string(29) "/[0-9]{3} 2.0.0 (.*) Message/"
      ["postfix"]=>
      string(35) "/[0-9]{3} 2.0.0 Ok: queued as (.*)/"
    }
    ["smtp_conn":protected]=>
    NULL
    ["error":protected]=>
    array(4) {
      ["error"]=>
      string(0) ""
      ["detail"]=>
      string(0) ""
      ["smtp_code"]=>
      string(0) ""
      ["smtp_code_ex"]=>
      string(0) ""
    }
    ["helo_rply":protected]=>
    NULL
    ["server_caps":protected]=>
    NULL
    ["last_reply":protected]=>
    string(347) "MIA??????4D?/H??z8P,??BA1O??'g?ce?.x5?:<??da?????]?K:8#Ad
??mi?????U?X???o?n???q?Z4?='A???R?.j?

?3?V??Fd???2???Q?????e(?pD??>?e???????9?
?? ???_,t?????0???> ?x?? *+|????i? *?g????js;?e??L9?6?>??T6oa??~??-?J
M}\??;
????.B$1j???????;q?^?ó??[R???’?U?N????0:????.m`??E%2???”
}
[“to”:protected]=>
array(1) {
[0]=>
array(2) {
[0]=>
string(21) “krietahomes@gmail.com”
[1]=>
string(0) “”
}
}
[“cc”:protected]=>
array(0) {
}
[“bcc”:protected]=>
array(0) {
}
[“ReplyTo”:protected]=>
array(0) {
}
[“all_recipients”:protected]=>
array(1) {
[“krietahomes@gmail.com”]=>
bool(true)
}
[“RecipientsQueue”:protected]=>
array(0) {
}
[“ReplyToQueue”:protected]=>
array(0) {
}
[“attachment”:protected]=>
array(0) {
}
[“CustomHeader”:protected]=>
array(0) {
}
[“lastMessageID”:protected]=>
string(49) “”
[“message_type”:protected]=>
string(5) “plain”
[“boundary”:protected]=>
array(3) {
[1]=>
string(35) “b1_e1f2e821b99c017d108e6dd0a6ce49de”
[2]=>
string(35) “b2_e1f2e821b99c017d108e6dd0a6ce49de”
[3]=>
string(35) “b3_e1f2e821b99c017d108e6dd0a6ce49de”
}
[“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(2)
[“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(true)
[“uniqueid”:protected]=>
string(32) “e1f2e821b99c017d108e6dd0a6ce49de”
}
The SMTP debugging output is shown below:
2017-08-05 20:41:54 Connection: opening to smtp-pulse.com:2525, timeout=300, options=array (
)
2017-08-05 20:41:54 Connection: opened
2017-08-05 20:41:54 SMTP -> get_lines(): $data is “”
2017-08-05 20:41:54 SMTP -> get_lines(): $str is “220 smtp-pulse.com ESMTP SendPulse SMTP Server

2017-08-05 20:41:54 SERVER -> CLIENT: 220 smtp-pulse.com ESMTP SendPulse SMTP Server
2017-08-05 20:41:54 CLIENT -> SERVER: EHLO http://www.krieta.com
2017-08-05 20:41:54 SMTP -> get_lines(): $data is “”
2017-08-05 20:41:54 SMTP -> get_lines(): $str is “250-smtp-pulse.com at your service, [::ffff:185.2.168.20]

2017-08-05 20:41:54 SMTP -> get_lines(): $data is “250-smtp-pulse.com at your service, [::ffff:185.2.168.20]

2017-08-05 20:41:54 SMTP -> get_lines(): $str is “250-8BITMIME

2017-08-05 20:41:54 SMTP -> get_lines(): $data is “250-smtp-pulse.com at your service, [::ffff:185.2.168.20]
250-8BITMIME

2017-08-05 20:41:54 SMTP -> get_lines(): $str is “250-ENHANCEDSTATUSCODES

2017-08-05 20:41:54 SMTP -> get_lines(): $data is “250-smtp-pulse.com at your service, [::ffff:185.2.168.20]
250-8BITMIME
250-ENHANCEDSTATUSCODES

2017-08-05 20:41:54 SMTP -> get_lines(): $str is “250-AUTH PLAIN LOGIN

2017-08-05 20:41:54 SMTP -> get_lines(): $data is “250-smtp-pulse.com at your service, [::ffff:185.2.168.20]
250-8BITMIME
250-ENHANCEDSTATUSCODES
250-AUTH PLAIN LOGIN

2017-08-05 20:41:54 SMTP -> get_lines(): $str is “250-AUTH=PLAIN LOGIN

2017-08-05 20:41:54 SMTP -> get_lines(): $data is “250-smtp-pulse.com at your service, [::ffff:185.2.168.20]
250-8BITMIME
250-ENHANCEDSTATUSCODES
250-AUTH PLAIN LOGIN
250-AUTH=PLAIN LOGIN

2017-08-05 20:41:54 SMTP -> get_lines(): $str is “250 STARTTLS

2017-08-05 20:41:54 SERVER -> CLIENT: 250-smtp-pulse.com at your service, [::ffff:185.2.168.20]
250-8BITMIME
250-ENHANCEDSTATUSCODES
250-AUTH PLAIN LOGIN
250-AUTH=PLAIN LOGIN
250 STARTTLS
2017-08-05 20:41:54 CLIENT -> SERVER: STARTTLS
2017-08-05 20:41:54 SMTP -> get_lines(): $data is “”
2017-08-05 20:41:54 SMTP -> get_lines(): $str is “220 2.0.0 Ready to start TLS

2017-08-05 20:41:54 SERVER -> CLIENT: 220 2.0.0 Ready to start TLS
2017-08-05 20:41:54 SMTP Error: Could not connect to SMTP host.
2017-08-05 20:41:54 CLIENT -> SERVER: QUIT
2017-08-05 20:41:54 SMTP -> get_lines(): $data is “”
2017-08-05 20:41:54 SMTP -> get_lines(): $str is “MIA??????4D?/H??z8P,??BA1O??’g?ce?.x5?:<??da?????]?K:8#Ad

2017-08-05 20:41:54 SMTP -> get_lines(): $data is “MIA??????4D?/H??z8P,??BA1O??’g?ce?.x5?:<??da?????]?K:8#Ad

2017-08-05 20:41:54 SMTP -> get_lines(): $str is “??mi?????U?X???o?n???q?Z4?=’A???R?.j?`?3?V??Fd???2???Q?????e(?pD??>?e???????9?

2017-08-05 20:41:54 SMTP -> get_lines(): $data is “MIA??????4D?/H??z8P,??BA1O??’g?ce?.x5?:<??da?????]?K:8#Ad
??mi?????U?X???o?n???q?Z4?=’A???R?.j?`?3?V??Fd???2???Q?????e(?pD??>?e???????9?

2017-08-05 20:41:54 SMTP -> get_lines(): $str is “?? ???_,t?????0???> ?x?? *+|????i? *?g????js;?e??L9?6?>??T6oa??~??-?J

2017-08-05 20:41:54 SMTP -> get_lines(): $data is “MIA??????4D?/H??z8P,??BA1O??’g?ce?.x5?:<??da?????]?K:8#Ad
??mi?????U?X???o?n???q?Z4?=’A???R?.j?`?3?V??Fd???2???Q?????e(?pD??>?e???????9?
?? ???_,t?????0???> ?x?? *+|????i? *?g????js;?e??L9?6?>??T6oa??~??-?J

2017-08-05 20:41:54 SMTP -> get_lines(): $str is “M}\??;
????.B$1j???????;q?^?ó??[R???’?U?N????0:????.m`??E%2???”
2017-08-05 20:41:54 SERVER -> CLIENT: MIA??????4D?/H??z8P,??BA1O??’g?ce?.x5?:<??da?????]?K:8#Ad
??mi?????U?X???o?n???q?Z4?=’A???R?.j?`?3?V??Fd???2???Q?????e(?pD??>?e???????9?
?? ???_,t?????0???> ?x?? *+|????i? *?g????js;?e??L9?6?>??T6oa??~??-?J
M}\??;
????.B$1j???????;q?^?ó??[R???’?U?N????0:????.m`??E%2???
2017-08-05 20:41:54 SMTP ERROR: QUIT command failed: MIA??????4D?/H??z8P,??BA1O??’g?ce?.x5?:<??da?????]?K:8#Ad
??mi?????U?X???o?n???q?Z4?=’A???R?.j?`?3?V??Fd???2???Q?????e(?pD??>?e???????9?
?? ???_,t?????0???> ?x?? *+|????i? *?g????js;?e??L9?6?>??T6oa??~??-?J
M}\??;
????.B$1j???????;q?^?ó??[R???’?U?N????0:????.m`??E%2???
2017-08-05 20:41:54 Connection: closed
2017-08-05 20:41:54 SMTP Error: Could not connect to SMTP host.`

  • This topic was modified 10 hours, 30 minutes ago by vinay404.

Mail not working

$
0
0

Replies: 0

Hi,

I am running WordPress on a site, however am unable to receive send emails from the site. I am unable to receive new user registrations, or reset passwords, due to the error

The e-mail could not be sent.
Possible reason: your host may have disabled the mail() function...

I have installed WP mail SMTP, but am still unable to send emails regardless of the settings I have tried (both mail() and SMTP). The plugin just times out. I have tried installing he Check Email plugin, and the emails sent from this plugin work and are received. I am also still able to receive emails from my contact form plugin Fast Secure Contact Form.
I am in shared hosting, however I also run two other WordPress sites on my hosting both of which are able to send basic WordPress emails.

Blocked outbound port on GCP

$
0
0

Replies: 0

I am hosting my site on google cloud platform and the server is working fine (used the Bitnami deployment manager option).
I’m now trying to set up the WP-Mail-SMTP email plugin, however, Google blocks the outgoing ports for email and I can’t setup the connection. My email is being hosted on office 365 and all config options are correct but I don’t know how to setup the page to get around the blocked ports.
Thanks

Feature Request: Filter Debug Level

$
0
0

Replies: 0

Since the SMTPDebug setting provides lots of values, it would be really nice to make this configurable. A setting seems like overkill (though maybe consider it), but a filter seems like the perfect tool for the job.

Instead of this on wp_mail_smtp.php line 209:

$phpmailer->SMTPDebug = true;

It could be this!

$phpmailer->SMTPDebug = apply_filters( 'wp_mail_smtp_debug_level', 1 );

(Note: I don’t think true is technically an accepted value. I suspect it’s just evaluating to 1, but I’m also new to this stuff and may be misreading things.)

For now, I’ve taken to hacking the plugin. I’d like to stop that though. Thanks!


SMTP Error: Could not connect to SMTP host.

$
0
0

Replies: 0

I have a error SMTP Error: Could not connect to SMTP host.

I had configured all fields correctly but when I make a test it appears this:

The result was:
bool(false)
The full debugging output is shown below:
object(PHPMailer)#6632 (76) {
[“Version”]=>
string(6) “5.2.22”
[“Priority”]=>
NULL
[“CharSet”]=>
string(5) “UTF-8”
[“ContentType”]=>
string(10) “text/plain”
[“Encoding”]=>
string(4) “7bit”
[“ErrorInfo”]=>
string(43) “SMTP Error: Could not connect to SMTP host.”
[“From”]=>
string(23) “esther@rentbuyspain.com”
[“FromName”]=>
string(14) “Rent Buy Spain”
[“Sender”]=>
string(0) “”
[“ReturnPath”]=>
string(0) “”
[“Subject”]=>
string(45) “WP Mail SMTP: Test mail to algobe10@gmail.com
[“Body”]=>
string(68) “This is a test email generated by the WP Mail SMTP WordPress plugin.”
[“AltBody”]=>
string(0) “”
[“Ical”]=>
string(0) “”
[“MIMEBody”:protected]=>
string(69) “This is a test email generated by the WP Mail SMTP WordPress plugin.

[“MIMEHeader”:protected]=>
string(354) “Date: Wed, 13 Sep 2017 18:08:17 +0000
To: algobe10@gmail.com
From: Rent Buy Spain
Subject: WP Mail SMTP: Test mail to algobe10@gmail.com
Message-ID: <809cc2499795cc58a986137fb7b41d06@rentbuyspain.com>
X-Mailer: PHPMailer 5.2.22 (https://github.com/PHPMailer/PHPMailer)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8


[“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(31) “Wed, 13 Sep 2017 18:08:17 +0000”
[“Host”]=>
string(21) “smtp.rentbuyspain.com”
[“Port”]=>
string(3) “587”
[“Helo”]=>
string(0) “”
[“SMTPSecure”]=>
string(0) “”
[“SMTPAutoTLS”]=>
bool(true)
[“SMTPAuth”]=>
bool(true)
[“SMTPOptions”]=>
array(0) {
}
[“Username”]=>
string(26) “webmaster@rentbuyspain.com”
[“Password”]=>
string(10) “Mcafee2012”
[“AuthType”]=>
string(0) “”
[“Realm”]=>
string(0) “”
[“Workstation”]=>
string(0) “”
[“Timeout”]=>
int(300)
[“SMTPDebug”]=>
bool(true)
[“Debugoutput”]=>
string(4) “echo”
[“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]=>
object(SMTP)#6751 (14) {
[“Version”]=>
string(6) “5.2.22”
[“SMTP_PORT”]=>
int(25)
[“CRLF”]=>
string(2) ”

[“do_debug”]=>
bool(true)
[“Debugoutput”]=>
string(4) “echo”
[“do_verp”]=>
bool(false)
[“Timeout”]=>
int(300)
[“Timelimit”]=>
int(300)
[“smtp_transaction_id_patterns”:protected]=>
array(3) {
[“exim”]=>
string(21) “/[0-9]{3} OK id=(.*)/”
[“sendmail”]=>
string(29) “/[0-9]{3} 2.0.0 (.*) Message/”
[“postfix”]=>
string(35) “/[0-9]{3} 2.0.0 Ok: queued as (.*)/”
}
[“smtp_conn”:protected]=>
NULL
[“error”:protected]=>
array(4) {
[“error”]=>
string(0) “”
[“detail”]=>
string(0) “”
[“smtp_code”]=>
string(0) “”
[“smtp_code_ex”]=>
string(0) “”
}
[“helo_rply”:protected]=>
NULL
[“server_caps”:protected]=>
NULL
[“last_reply”:protected]=>
string(0) “”
}
[“to”:protected]=>
array(1) {
[0]=>
array(2) {
[0]=>
string(18) “algobe10@gmail.com”
[1]=>
string(0) “”
}
}
[“cc”:protected]=>
array(0) {
}
[“bcc”:protected]=>
array(0) {
}
[“ReplyTo”:protected]=>
array(0) {
}
[“all_recipients”:protected]=>
array(1) {
[“algobe10@gmail.com”]=>
bool(true)
}
[“RecipientsQueue”:protected]=>
array(0) {
}
[“ReplyToQueue”:protected]=>
array(0) {
}
[“attachment”:protected]=>
array(0) {
}
[“CustomHeader”:protected]=>
array(0) {
}
[“lastMessageID”:protected]=>
string(51) “<809cc2499795cc58a986137fb7b41d06@rentbuyspain.com>”
[“message_type”:protected]=>
string(5) “plain”
[“boundary”:protected]=>
array(3) {
[1]=>
string(35) “b1_809cc2499795cc58a986137fb7b41d06”
[2]=>
string(35) “b2_809cc2499795cc58a986137fb7b41d06”
[3]=>
string(35) “b3_809cc2499795cc58a986137fb7b41d06”
}
[“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(2)
[“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(true)
[“uniqueid”:protected]=>
string(32) “809cc2499795cc58a986137fb7b41d06”
}
The SMTP debugging output is shown below:
2017-09-13 18:08:17 Connection: opening to smtp.rentbuyspain.com:587, timeout=300, options=array (
)
2017-09-13 18:08:17 Connection: opened
2017-09-13 18:08:17 SMTP -> get_lines(): $data is “”
2017-09-13 18:08:17 SMTP -> get_lines(): $str is “220 smtp-02.piensasolutions.com ESMTP Postfix

2017-09-13 18:08:17 SERVER -> CLIENT: 220 smtp-02.piensasolutions.com ESMTP Postfix
2017-09-13 18:08:17 CLIENT -> SERVER: EHLO rentbuyspain.com
2017-09-13 18:08:17 SMTP -> get_lines(): $data is “”
2017-09-13 18:08:17 SMTP -> get_lines(): $str is “250-slsa667-a08.piensasolutions.com

2017-09-13 18:08:17 SMTP -> get_lines(): $data is “250-slsa667-a08.piensasolutions.com

2017-09-13 18:08:17 SMTP -> get_lines(): $str is “250-PIPELINING

2017-09-13 18:08:17 SMTP -> get_lines(): $data is “250-slsa667-a08.piensasolutions.com
250-PIPELINING

2017-09-13 18:08:17 SMTP -> get_lines(): $str is “250-SIZE 51200000

2017-09-13 18:08:17 SMTP -> get_lines(): $data is “250-slsa667-a08.piensasolutions.com
250-PIPELINING
250-SIZE 51200000

2017-09-13 18:08:17 SMTP -> get_lines(): $str is “250-ETRN

2017-09-13 18:08:17 SMTP -> get_lines(): $data is “250-slsa667-a08.piensasolutions.com
250-PIPELINING
250-SIZE 51200000
250-ETRN

2017-09-13 18:08:17 SMTP -> get_lines(): $str is “250-STARTTLS

2017-09-13 18:08:17 SMTP -> get_lines(): $data is “250-slsa667-a08.piensasolutions.com
250-PIPELINING
250-SIZE 51200000
250-ETRN
250-STARTTLS

2017-09-13 18:08:17 SMTP -> get_lines(): $str is “250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5

2017-09-13 18:08:17 SMTP -> get_lines(): $data is “250-slsa667-a08.piensasolutions.com
250-PIPELINING
250-SIZE 51200000
250-ETRN
250-STARTTLS
250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5

2017-09-13 18:08:17 SMTP -> get_lines(): $str is “250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5

2017-09-13 18:08:17 SMTP -> get_lines(): $data is “250-slsa667-a08.piensasolutions.com
250-PIPELINING
250-SIZE 51200000
250-ETRN
250-STARTTLS
250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5
250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5

2017-09-13 18:08:17 SMTP -> get_lines(): $str is “250-ENHANCEDSTATUSCODES

2017-09-13 18:08:17 SMTP -> get_lines(): $data is “250-slsa667-a08.piensasolutions.com
250-PIPELINING
250-SIZE 51200000
250-ETRN
250-STARTTLS
250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5
250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5
250-ENHANCEDSTATUSCODES

2017-09-13 18:08:17 SMTP -> get_lines(): $str is “250 8BITMIME

2017-09-13 18:08:17 SERVER -> CLIENT: 250-slsa667-a08.piensasolutions.com
250-PIPELINING
250-SIZE 51200000
250-ETRN
250-STARTTLS
250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5
250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5
250-ENHANCEDSTATUSCODES
250 8BITMIME
2017-09-13 18:08:17 CLIENT -> SERVER: STARTTLS
2017-09-13 18:08:17 SMTP -> get_lines(): $data is “”
2017-09-13 18:08:17 SMTP -> get_lines(): $str is “220 2.0.0 Ready to start TLS

2017-09-13 18:08:17 SERVER -> CLIENT: 220 2.0.0 Ready to start TLS
2017-09-13 18:08:17 SMTP Error: Could not connect to SMTP host.
2017-09-13 18:08:17 CLIENT -> SERVER: QUIT
2017-09-13 18:08:17 SMTP -> get_lines(): $data is “”
2017-09-13 18:08:17 SMTP -> get_lines(): $str is “”
2017-09-13 18:08:17 SERVER -> CLIENT:
2017-09-13 18:08:17 SMTP ERROR: QUIT command failed:
2017-09-13 18:08:17 Connection: closed
2017-09-13 18:08:17 SMTP Error: Could not connect to SMTP host.

I was speaking with support hosting but they can not help me.

FIX: Error : Peer certificate did not match expected CN=

Suggestion

$
0
0

Replies: 0

Hey guys and thank you for this great plugin! I have a suggestion, when choosing the Mailer option in the settings it’d be nice to a an option to disable all outgoing e-mails. This comes in handy for example if taking a backup of the site and reinstalling it on another web host to test a new plugin or update an existing one or if help is needed to configure/code something from someone outside so it won’t be needed to hand out the credentials to the main site.

With best regards,

bb

Keeping getting ‘SMTP Error: Could not connect to SMTP host.’ error message

$
0
0

Replies: 0

Hi,

The contact forms on the website worked fine until a few days ago. I keep getting the spinning arrow icon when I submit a form, but then nothing happens. I am using office365.

I sent a test email and got the following message: “SMTP Error: Could not connect to SMTP host.” I have doubled checked all the SMTP settings and they are correct.
I deactivated the SMTP plugin and the contact form worked because it showed a green box saying ‘Thank you for your message. It has been sent.” However, in order to receive the emails I need to make use of the SMTP plugin.
I activated the SMTP plugin again and the form shows the spinning arrow again and the SMTP Error.
Someone please advise, thanks.

  • This topic was modified 25 minutes ago by chazg.

Connection: Failed to connect to server

$
0
0

Replies: 0

I am having trouble using this with an office365 address. I set the mail account up in Thunderbird and I can both send and receive, so I know the values are correct.

The problem seems to be with security. Thunderbird is using STARTTLS, but no option I choose in the plugin admin will work.

Any help would be appreciated.

Not all messages being sent

$
0
0

Replies: 0

Hello,

For the most part, email messages sent from my WordPress/LearnDash environment are being sent.

However:
I am getting this error: Error: SMTP Error: data not accepted when email messages are sent from the LearnDash ProPanel and also from Oasis Workflow plugins. In the email logger, I can see that the messages are being created and then rejected. When viewed from the email logger, the ProPanel messages are missing the receiver name, but the Oasis workflow messages appear to be fine.

Email Logger Message

Is there a way for me to get more detail on the error?

Mails are only sent when logged in

$
0
0

Replies: 0

Hi there. I am using your plugin for email sending. Now i noticed that emails are only sent when i am logged in. a public user cannot send emails.

Any idea how this can be fixed? i’ts deployed on a live site, so i would be happy to fix this soon

best regards

Claudio


Not working with Woocommerce

$
0
0

Replies: 0

Hi,

I have installed the plugin and it is working fine for general WordPress notifications but no Woocommerce emails are sending, either to customers or admin.

All emails are turned on in Woocommerce and the ‘Send all WordPress emails via SMTP.’ option is checked.

Any ideas?

Thanks

[FIX] Can’t connect to SMTP

$
0
0

Replies: 1

So I was having this problem we’re all having of not being able to connect to the SMTP server.

In my case I had to send through SMTP without any encryption. I noticed that even when I checked the “no encryption” option on the plugin it would try to connect using an encryption method.

So I went to wp-includes/class-phpmailer.php and changed $SMTPAutoTLS from true to false, meaning it won’t try to use TLS encryption automatically anymore.

It connected and it worked.

Test Email Field Not Working

$
0
0

Replies: 2

Hi, for some reason the test email field has a calendar popup and I can’t enter an email address to test.

i used this plugin then contact form 7 fome is not submited

i used this plugin then contact form 7 fome is not submited

Viewing all 4992 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>