Hello!
I use SMTP 1.4.0.0 in my app.
-- Server Properties
tblServerProperties = {};
tblServerProperties.Server = "smtp.gmail.com";
tblServerProperties.ServerPort = 465;
tblServerProperties.UseSSL = true;
tblServerProperties.Authenticated = true;
tblServerProperties.UserName = <[email protected]>;
tblServerProperties.PassWord = <password>;
When I check the plugin on my PC, then everything is OK.
But when users run my app on other PC (from other countries), a message appears:
"The message could not be sent to the SMTP server. The transport error code was 0x80040217. The server response was not available"
UserName and PassWord - 100% correct.
Has anyone encountered this problem?
I use SMTP 1.4.0.0 in my app.
-- Server Properties
tblServerProperties = {};
tblServerProperties.Server = "smtp.gmail.com";
tblServerProperties.ServerPort = 465;
tblServerProperties.UseSSL = true;
tblServerProperties.Authenticated = true;
tblServerProperties.UserName = <[email protected]>;
tblServerProperties.PassWord = <password>;
When I check the plugin on my PC, then everything is OK.
But when users run my app on other PC (from other countries), a message appears:
"The message could not be sent to the SMTP server. The transport error code was 0x80040217. The server response was not available"
UserName and PassWord - 100% correct.
Has anyone encountered this problem?
Comment