PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WEBDEV 2024 → EmailStartSession(gSessionSMTP)
EmailStartSession(gSessionSMTP)
Started by Carlos, Sep., 23 2022 11:30 PM - 1 reply
Registered member
37 messages
Posted on September, 23 2022 - 11:30 PM
Hello and thanks in advance for the help

I have been sending e-mails without any issues in my Web-App but all of a sudden I am getting the following error

>>> Reception failed: problem reading on socket.
System error returned by socket:
<Connection reset by the other side (WSAECONNRESET)<<<

Here is my procedure to send the email

Procedure Procedure_Send_an_Email_Using_SMTP()

//This is an Email
AnEmail_or_Text..Sender = "pnotification@mydomain.com"//gsEmail_or_Text_Sender
AnEmail_or_Text..Recipient[1] = "doplex@mydomain.com"//gsEMail_Address
AnEmail_or_Text..Subject = gsSubject
AnEmail_or_Text..Message = gsEmail_Body_Information

// Send the email
IF gsEMail_Address = "" THEN
//Do Nothing
ELSE
IF EmailStartSession(gSessionSMTP) = True THEN
IF EmailSendMessage(gSessionSMTP, AnEmail_or_Text) = False THEN
Info("Failure sending the email. "+ErrorInfo(errMessage))
ELSE
//Info("Email Sent")
END

ELSE
---->(I get the error here) Info("Unable to establish the connection with the SMTP Server. No E-Mail Sent."+ErrorInfo(errMessage))
END


END


I have no idea how to solve this problem.
Perhaps someone has come across this issue and could help me out.

Thank you
Best regards,

Carlos

--
Best regards,

Carlos
Posted on October, 18 2022 - 12:02 PM
Hello Carlos,

i think your Mailserver is not accepting SMTP-Connections from your Webdev-Server.

In most Mailserver Configurations you can for security reasons limit connections, so not every client/server can flood your Mailserver.

So ask your Mailserver-Admin to check this.

Hope this can help.

Best Regards.