My host is GoDaddy and I have the entire PWS Kit working except for the email. I have put all of the appropriate smtp settings in the web.config and I'm still having no luck. Any help would be greatly appreciated.
"It's a 'Jump to Conclusions mat'. You see, you have this mat, with different CONCLUSIONS written on it that you could JUMP TO. "
Application Developer
ASP.Net,C#,XSLT,XML,HTML,DHTML,JavaScript,CSS
No Exception is raised.... just no email ever gets to me.
~ Chris
"It's a 'Jump to Conclusions mat'. You see, you have this mat, with different CONCLUSIONS written on it that you could JUMP TO. "
Application Developer
ASP.Net,C#,XSLT,XML,HTML,DHTML,JavaScript,CSS
"It's a 'Jump to Conclusions mat'. You see, you have this mat, with different CONCLUSIONS written on it that you could JUMP TO. "
Application Developer
ASP.Net,C#,XSLT,XML,HTML,DHTML,JavaScript,CSS
I am trying to get my personal web page starter kit working with GoDaddy and I am having the dickins of a time to set up the the web.config page BOTH on server at godaddy and my development server. Would you take sometime to share what you did to get it
to work, I am stuck in a ditch.
Remember you have to go into the control panel and create an email user or it will not work.
I just wanted to let you guys know that this was a big help...I just moved my sites over to GoDaddy, and I've been struggling today trying to use network credentials, etc. with the SMTP client and kept getting the invalid domain msesage. So I came here and
voila! Problem solved. You know, you tend to think you're the only one who's ever seen the problem, then a 2-minute search on a forum like this reveals that someone's already solved the issue months ago.
(I have changed the email to protect the account, but it *IS* an established Forwarding email account on the hosting service, although I'm not sure that matters.)
snowboarder8...
Member
135 Points
27 Posts
Getting SMTP to Work with GoDaddy
Mar 18, 2006 07:11 PM|LINK
<system.net>
<mailSettings>
<smtp from="Admin@MyWebsite.com">
<network host="smtpout.secureserver.net" password="MyPassword"
port="3535" userName="MyUserName" />
</smtp>
</mailSettings>
</system.net>
Best Regards,
Chris
Application Developer
ASP.Net,C#,XSLT,XML,HTML,DHTML,JavaScript,CSS
StrongTypes
All-Star
30801 Points
6013 Posts
ASPInsiders
Re: Getting SMTP to Work with GoDaddy
Mar 18, 2006 09:38 PM|LINK
Is an exception being raised when it tries to send email? If so, post the exception.
HTH,
Ryan
snowboarder8...
Member
135 Points
27 Posts
Re: Getting SMTP to Work with GoDaddy
Mar 18, 2006 11:07 PM|LINK
~ Chris
Application Developer
ASP.Net,C#,XSLT,XML,HTML,DHTML,JavaScript,CSS
StrongTypes
All-Star
30801 Points
6013 Posts
ASPInsiders
Re: Getting SMTP to Work with GoDaddy
Mar 18, 2006 11:26 PM|LINK
Have you checked your spam folder or tried another email address?
HTH,
Ryan
snowboarder8...
Member
135 Points
27 Posts
Re: Getting SMTP to Work with GoDaddy
Mar 19, 2006 01:53 AM|LINK
Thanks for tips!
~ Chris
Application Developer
ASP.Net,C#,XSLT,XML,HTML,DHTML,JavaScript,CSS
krisfr
Member
85 Points
17 Posts
Re: Getting SMTP to Work with GoDaddy
Nov 17, 2006 09:50 PM|LINK
Hey Chris
I am trying to get my personal web page starter kit working with GoDaddy and I am having the dickins of a time to set up the the web.config page BOTH on server at godaddy and my development server. Would you take sometime to share what you did to get it to work, I am stuck in a ditch.
Thanks for your help
epasalakis
Member
15 Points
3 Posts
Re: Getting SMTP to Work with GoDaddy
Nov 18, 2006 03:20 PM|LINK
I am on godaddy and this works for me.
<system.net>
<mailSettings>
<smtp from="noreply@noreply.net">
<network host="smtpout.secureserver.net" password="<password>" port="25" userName="noreply@domain.net"/>
</smtp>
</mailSettings>
</system.net>
Remember you have to go into the control panel and create an email user or it will not work.
Drydocked
Member
7 Points
2 Posts
Re: Getting SMTP to Work with GoDaddy
Feb 19, 2007 10:46 PM|LINK
I just wanted to let you guys know that this was a big help...I just moved my sites over to GoDaddy, and I've been struggling today trying to use network credentials, etc. with the SMTP client and kept getting the invalid domain msesage. So I came here and voila! Problem solved. You know, you tend to think you're the only one who's ever seen the problem, then a 2-minute search on a forum like this reveals that someone's already solved the issue months ago.
THANKS!
Sitesbuilder...
Member
142 Points
118 Posts
Getting SMTP to Work with GoDaddy
Aug 08, 2007 07:15 AM|LINK
You can find the solution for your problem at:
http://www.sitesbuilders.com/Articles/Godaddy-Smtp.aspxKevInKauai
Member
233 Points
301 Posts
Re: Getting SMTP to Work with GoDaddy
Feb 23, 2008 10:17 PM|LINK
I just struggled through the various permutations found here and there for this to work on GoDaddy and found this to work:
<system.net> <mailSettings> <smtp from="xxxx@yyyy.org"> <network host="relay-hosting.secureserver.net"/> </smtp> </mailSettings> </system.net>(I have changed the email to protect the account, but it *IS* an established Forwarding email account on the hosting service, although I'm not sure that matters.)
:) KevInKauai
GoDaddy ASP.NET2.0 smtp