cdoMessage question - sending to verizon phone

R

Rabel

I am changing over to a cdo email messages for my site because they do
not support cdonts anymore - but I have one form that submits to my
phone and my email so the code looks like this

<%
sch = "http://schemas.microsoft.com/cdo/configuration/"

Set cdoConfig = CreateObject("CDO.Configuration")

With cdoConfig.Fields
.Item(sch & "sendusing") = 2 ' cdoSendUsingPort
.Item(sch & "smtpserver") = "mail.crea----ss.com"
.update
End With
Set cdoMessage = CreateObject("CDO.Message")

With cdoMessage
Set .Configuration = cdoConfig
.From = "(e-mail address removed)"
.To = "(e-mail address removed); (e-mail address removed)"
.Subject = "testing"
.TextBody = "Name: " & request.form("txtname") & CHR(13) &
"Phone: " & request.form("txtphone") & CHR(13) & "Email: " &
request.form("txtemail") & CHR(13) & "Message: " &
request.form("txtmessage")
.Send
End With

Set cdoMessage = Nothing
Set cdoConfig = Nothing
%>

But it will not send to my phone I tested and the address is working
but I am not sure how to fix this - any help is apprieciated.

Thanks,
Randy
 
R

Rabel

do you guys think the best way is to set up a redirecting email
address - that will work but I just think there is another way
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top