cdoMessage question - sending to verizon phone



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 = "911@xxxxxxxxxxxxxxx"
.To = "Randy@xxxxxxxxxxxxxxx; 61058-----8@xxxxxxxxx"
.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

.



Relevant Pages

  • Re: send all the jpeg files in a directory to one e-mail recipient
    ... Const sSMTPServer = "127.0.0.1" ... Dim objFSO, objFldr, objSFldr, objFile ... Set cdoConfig = CreateObject ... Set cdoMessage = CreateObject ...
    (microsoft.public.scripting.vbscript)
  • VBScript and CDOSYS
    ... Set cdoConfig = CreateObject ... 'Set CDO Port ... Set cdoMessage = CreateObject ... 'Send the email in HTML format ...
    (microsoft.public.scripting.vbscript)
  • Re: CDO help
    ... this method for CDO email and attaching files, ... Set cdoConfig = CreateObject ... Set cdoMessage = CreateObject ... .Subject = "Test Message" ...
    (microsoft.public.windows.server.scripting)
  • Sending EMail using CDOSYS - cant create object: CDO.Configurati
    ... dim rtncode, myWindow ... Dim cdoConfig ... Set cdoConfig = CreateObject ... Set cdoMessage = CreateObject ...
    (microsoft.public.scripting.vbscript)
  • Re: Sending mail to our mailserver with ASP Page problem
    ... IIRC, any time you set an object you should clean it up by reassigning to nothing ... Set cdoConfig = CreateObject ... Set cdoMessage = CreateObject ... .TextBody = "Your Company login password is blah blah blah" ...
    (microsoft.public.frontpage.programming)

Loading