Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: Mail Configuration
 Has anyone got email working on Godaddy lately?
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

SixGirl
Starting Member

USA
21 Posts

Posted - 25 May 2010 :  20:11:05  Show Profile
I'm just wondering if anyone has this working properly, because it seems like every one of the threads that is started about this just peters out. I'm hosting on Godaddy (moving from a different host) and don't seem to be able to get the email running.

Set up Version 3.4.06
- Using Cdosys
- email Server address - relay-hosting.secureserver.net
- Admin email - on a domain that godaddy knows about from my account

Any hints?

Thanks!

Todd
New Member

USA
63 Posts

Posted - 03 June 2010 :  22:29:50  Show Profile  Visit Todd's Homepage
Same here, I'm migrating to godaddy right now. I have the windows hosting with IIS 6. I've gotten everything else set, this is the last thing I need to get working as far as I can tell.

Not a clue.


Admin for the Tyco Collector's Forum

Go to Top of Page

HuwR
Forum Admin

United Kingdom
20579 Posts

Posted - 04 June 2010 :  01:58:02  Show Profile  Visit HuwR's Homepage
there are lots of posts here about godaddy mail

MVC .net dev/test site | MVC .net running on Raspberry Pi
Go to Top of Page

Todd
New Member

USA
63 Posts

Posted - 04 June 2010 :  15:13:32  Show Profile  Visit Todd's Homepage
Yeh, I did see them and I've tried quite a few things with the inc_mail.asp file. Still working on it, haven't had one get through yet.

SizGirl - I used the email server you listed above, which is what you will find suggested all over the internet. I've even tried using smtpout.secureserver.net as that is what you use if setting up a mail client like outlook to use as the relay. I think it's going to be a lot of trial and error.


Admin for the Tyco Collector's Forum

Go to Top of Page

bobby131313
Senior Member

USA
1163 Posts

Posted - 04 June 2010 :  15:33:18  Show Profile  Visit bobby131313's Homepage
When I used GD years ago I just put localhost in there and it worked.

Switch the order of your title tags
Go to Top of Page

leatherlips
Senior Member

USA
1838 Posts

Posted - 04 June 2010 :  17:25:31  Show Profile  Visit leatherlips's Homepage
I use Godaddy and have the same settings you mentioned. Here is a screenshot of my email panel:



You may need to call Godaddy if you keep having this issue.

Mangione Magic Forum - The Music of Chuck Mangione

My Mods: Googiespell MOD | Link To Reply MOD | Petition MOD | Contact Page MOD | Share This Topic MOD | MP3 MOD | PageEar MOD | Google Viewer MOD
Go to Top of Page

SixGirl
Starting Member

USA
21 Posts

Posted - 09 June 2010 :  21:01:18  Show Profile
Yep, I've tried Localhost and relay and just about everything recommended under the sun.... none of these options seems to work. Actually Localhost worked ONCE. Just once... gave me false hope. So I think there's something else going on. Will have to submit a support ticket.
Go to Top of Page

bobdsw
New Member

United States
62 Posts

Posted - 09 June 2010 :  21:18:55  Show Profile  Visit bobdsw's Homepage
I don't think this should be an issue, as I've usually only seen it with third party email sending through an ISP, but I'll throw it out there anyway.

Have you tried sending on port 587 instead of 25?

For the Cdosys case in inc_mail.asp find:
Flds("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2


Then try adding this after it:
Flds("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 587


We offer email with our hosting and recently more and more ISPs (like verizon) are requiring them to use 587 whenever they don't use out SMTP over Verizon's. Since it's a one line change to the code I thought I'd offer it up as something to try.

Beyond that my only thought is to ask are you authenticating? are these lines remmed out in your inc_mail.asp file?
'Flds("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = cdoBasic
'Flds("http://schemas.microsoft.com/cdo/configuration/sendusername") = "username"
'Flds("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "password"




Phoenix! - Ful site integration, CSS driven & XHTML compliant, MooTools, TinyMCE editor for posts & custom content management, , Visual Theme Designer, custom menus & pages, member galleries with ASP JPeg and ASPResize, ASP WordPress style Blog, web friends, FaceBook, Twitter & other social-sharing integration, ReCaptcha & Anti-Spam Registration...and much more.

Edited by - bobdsw on 09 June 2010 21:29:13
Go to Top of Page

Todd
New Member

USA
63 Posts

Posted - 14 June 2010 :  22:54:44  Show Profile  Visit Todd's Homepage
Got it working.

Using CDOSYS.

E-Mail Server Address: relay-hosting.secureserver.net
Administrator E-Mail Address: youremail@yourgodaddydomain.com (You need to set up an email if you haven't already. Sounds like the OP already has)

In inc_mail.asp

Change

objNewMail.From = strSender

to

objNewMail.From = "youremail@yourgodaddydomain.com"


Works well, very fast, email there in seconds.

My cdosys case statement looks like this.

case "cdosys"
Set iConf = Server.CreateObject ("CDO.Configuration")
Set Flds = iConf.Fields

'Set and update fields properties
Flds("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'cdoSendUsingPort
Flds("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strMailServer
'Flds("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = cdoBasic
'Flds("http://schemas.microsoft.com/cdo/configuration/sendusername") = "username"
'Flds("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "password"
Flds.Update

Set objNewMail = Server.CreateObject("CDO.Message")
Set objNewMail.Configuration = iConf

'Format and send message
Err.Clear

objNewMail.To = strRecipients
objNewMail.From = "youremail@yourgodaddydomain.com"
objNewMail.Subject = strSubject
objNewMail.TextBody = strMessage
On Error Resume Next
objNewMail.Send
If Err <> 0 Then
Err_Msg = Err_Msg & "<li>" & fLangN(strLangInc_Mail00010,Err.Description) & "</li>"
End if


Admin for the Tyco Collector's Forum

Go to Top of Page

compose
Starting Member

Canada
36 Posts

Posted - 17 June 2010 :  15:03:19  Show Profile  Visit compose's Homepage
Thank you Todd!
I never would have got my email working without your detailed instructions.
Go to Top of Page

SixGirl
Starting Member

USA
21 Posts

Posted - 29 June 2010 :  16:13:54  Show Profile
Todd... You are the wind beneath my wings

The only catch to this is that ALL email is coming from the address that you supply in that line.

I'd recommend anyone that uses this fix to get around the email filtering that Godaddy does, place a note in the email template to tell people to not click "Reply" only, but to add the correct email address that appears in the body of the email to the "To" line... otherwise your supplied email address will get loads of replies that you don't want
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.17 seconds. Powered By: Snitz Forums 2000 Version 3.4.07