Hi all....I have a page that sends email to an inbox if there are Database results. Cool, works as planned....I want to send them to my Mobile phone, via its mobile email address. I CAN send email to my mobile phone from say, outlook (or any email) client and I receive it quickly, without issue. I cannot figure out why I can do that, but yet when I use my ASP code, it does not work. Has anyone sent mail to their mobile email address using ASP successfully? If so, I'd love to know how...
My code is very simple (and works when I send to a "normal" email address) Here it is for reference:
Code:
<%
Response.Expires = 0
Dim message_body
message_body = "test email"& vbCrlf
Set ObjMail = Server.CreateObject("CDONTS.NewMail")
objMail.To = "1111111@carrier.com"
objMail.Subject ="Test Email"
objMail.From = "email@address.com"
objMail.Body = message_body
ObjMail.Send
Set ObjMail = Nothing
Response.Write"sent"
%>