Email Function on GoDaddy Hosting

Post here to discuss topics relate to the 4.x version for the ASP Football Pool software program. All support topics should go here.
Post Reply
jasonlnlv
Posts: 16
Joined: Thu Sep 04, 2014 2:19 am

Email Function on GoDaddy Hosting

Post by jasonlnlv »

I have my site on GoDaddy Windows hosting and it supports ASP running ASP.NET version 4.0.30319.18408 - Everything in the site works great now except for emailing...

I setup the email.asp section like this:

'Configure the message.
set cdoMessage = Server.CreateObject("CDO.Message")
set cdoConfig = Server.CreateObject("CDO.Configuration")
cdoConfig.Fields("http://schemas.microsoft.com/cdo/config ... /sendusing") = 2
cdoConfig.Fields("http://schemas.microsoft.com/cdo/config ... smtpserver") = "relay-hosting.secureserver.net"
cdoConfig.Fields("http://schemas.microsoft.com/cdo/config ... serverport") = 465
cdoConfig.Fields("http://schemas.microsoft.com/cdo/config ... smtpusessl") = True
cdoConfig.Fields("http://schemas.microsoft.com/cdo/config ... thenticate") = 1
cdoConfig.Fields("http://schemas.microsoft.com/cdo/config ... ndusername") = "admin@mydomain.com"
cdoConfig.Fields("http://schemas.microsoft.com/cdo/config ... ndpassword") = "my_password"
cdoConfig.Fields.Update
set cdoMessage.Configuration = cdoConfig


When I do a email send like updating the news and send update to users - I get the green banner that it updated and snt the email to all users.... but no one gets the email - I get not error codes at all...

Is there any ideas or any debugging scripts I can try to see what is going on?

Thanks,

Jason
Post Reply