I’ve been using Persits.MailSender for more than 2 years. But suddenly, emails stop going out 24 hours ago with no errors to show.
I did not touch the script at all. This just happened.
Anyone else had same problem??
Sample of my script:
<%
Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = "localhost"
Mail.From = "noreply@UrlDomain.com"
Mail.FromName = "Name"
Mail.AddAddress request.form("UEmail")
Mail.AddBCC "MyEmail@hotmail.com"
Mail.AddBCC "user@UrlDomain.com"
Mail.Subject = "Title Here"
Mail.IsHTML = True
Mail.Body = "<html><body>Hello</body></html>"
On Error Resume Next
Mail.Send
If Err <> 0 Then
Response.Write "An error occurred: " & Err.Description
else
response.Write "Successfully!"
End If
%>
I did not touch the script at all. This just happened.
Anyone else had same problem??
Sample of my script:
<%
Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = "localhost"
Mail.From = "noreply@UrlDomain.com"
Mail.FromName = "Name"
Mail.AddAddress request.form("UEmail")
Mail.AddBCC "MyEmail@hotmail.com"
Mail.AddBCC "user@UrlDomain.com"
Mail.Subject = "Title Here"
Mail.IsHTML = True
Mail.Body = "<html><body>Hello</body></html>"
On Error Resume Next
Mail.Send
If Err <> 0 Then
Response.Write "An error occurred: " & Err.Description
else
response.Write "Successfully!"
End If
%>