Getting SMTP to Work with GoDaddy

Rate It (1)

Last post 08-21-2009 4:12 AM by Sadie. 18 replies.

Sort Posts:

  • Getting SMTP to Work with GoDaddy

    03-18-2006, 3:11 PM
    Locked
    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.

     <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
    "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
  • Re: Getting SMTP to Work with GoDaddy

    03-18-2006, 5:38 PM
    Locked
    • All-Star
      30,697 point All-Star
    • StrongTypes
    • Member since 12-13-2005, 4:21 PM
    • California
    • Posts 6,007
    • ASPInsiders
      Moderator
      TrustedFriends-MVPs

    Is an exception being raised when it tries to send email? If so, post the exception.

    HTH,
    Ryan

    Ryan Olshan
    ASPInsider | Microsoft MVP, ASP.NET
    http://ryanolshan.com

    How to ask a question
  • Re: Getting SMTP to Work with GoDaddy

    03-18-2006, 7:07 PM
    Locked
    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
  • Re: Getting SMTP to Work with GoDaddy

    03-18-2006, 7:26 PM
    Locked
    • All-Star
      30,697 point All-Star
    • StrongTypes
    • Member since 12-13-2005, 4:21 PM
    • California
    • Posts 6,007
    • ASPInsiders
      Moderator
      TrustedFriends-MVPs

    Have you checked your spam folder or tried another email address?

    HTH,
    Ryan

    Ryan Olshan
    ASPInsider | Microsoft MVP, ASP.NET
    http://ryanolshan.com

    How to ask a question
  • Re: Getting SMTP to Work with GoDaddy

    03-18-2006, 9:53 PM
    Locked
    Yes - to no avail.

    Thanks for tips!

    ~ 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
  • Re: Getting SMTP to Work with GoDaddy

    11-17-2006, 5:50 PM
    Locked
    • Member
      85 point Member
    • krisfr
    • Member since 10-13-2006, 4:00 AM
    • Kissimmee Florida
    • Posts 17

    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 

    Chris R. Marshall
  • Re: Getting SMTP to Work with GoDaddy

    11-18-2006, 11:20 AM
    Locked
    • Member
      15 point Member
    • epasalakis
    • Member since 03-06-2006, 11:54 PM
    • Posts 3

    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.

  • Re: Getting SMTP to Work with GoDaddy

    02-19-2007, 6:46 PM
    Locked
    • Member
      7 point Member
    • Drydocked
    • Member since 08-24-2006, 8:16 PM
    • Posts 2
    epasalakis:

    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.

    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!

  • Getting SMTP to Work with GoDaddy

    08-08-2007, 3:15 AM
    Locked

    You can find the solution for your problem at:

    http://www.sitesbuilders.com/Articles/Godaddy-Smtp.aspx
  • Re: Getting SMTP to Work with GoDaddy

    02-23-2008, 6:17 PM
    Locked
    • Member
      185 point Member
    • KevInKauai
    • Member since 04-23-2007, 12:51 AM
    • Posts 249

    I just struggled through the various permutations found here and there for this to work on GoDaddy and found this to work:

    1     <system.net>
    2      <mailSettings>
    3       <smtp from="xxxx@yyyy.org">
    4        <network host="relay-hosting.secureserver.net"/>
    5       </smtp>
    6      </mailSettings>
    7     </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

    Filed under: , ,
  • Re: Getting SMTP to Work with GoDaddy

    11-10-2008, 11:38 AM
    Locked
    • Member
      5 point Member
    • mddubs
    • Member since 08-10-2007, 7:13 PM
    • Posts 11

    I believe the difference between the above two posts is:

    Settings When Hosted On GoDaddy

    <system.net>
          <mailSettings>
           <smtp from="xxxx@yyyy.org">
            <network host="relay-hosting.secureserver.net"/>
           </smtp>
          </mailSettings>
         </system.net>

    Settings When Hosted Externally

    <system.net>
        <mailSettings>
          <smtp from="noreply@domain.net">
            <network host="smtpout.secureserver.net" password="<password>" port="25" userName="noreply@domain.net"/>
          </smtp>
        </mailSettings>
      </system.net>

    http://bunkerhollow.com
    Filed under: , ,
  • Re: Getting SMTP to Work with GoDaddy

    04-17-2009, 9:59 PM
    Locked
    • Member
      4 point Member
    • invent
    • Member since 05-28-2008, 11:07 PM
    • Posts 23

    hi its nice to see this reply, but the problem with this relay server is,it will send only 250 emails per day,what should I do if I wantto send more than that,I thought to use gmail smtp server,and it was working very well on my pc but its not working on the godaddy server.Any help is appreciated a lot.

  • Re: Getting SMTP to Work with GoDaddy

    04-17-2009, 11:12 PM
    Locked
    • Member
      185 point Member
    • KevInKauai
    • Member since 04-23-2007, 12:51 AM
    • Posts 249

    I believe there is a way around the 250 limitation. I recall seeing a Help file on GoDaddy that addressed that. If all else fails, call their Technical Support line (I use Skype since it's not a toll-free number). I've found them to be very helpful on practically everything.

    I hope this helps ... :)  KevInKauai

  • Re: Getting SMTP to Work with GoDaddy

    04-21-2009, 3:11 PM
    Locked
    • Member
      2 point Member
    • NewMediaFl
    • Member since 04-21-2009, 7:07 PM
    • Tampa, Florida
    • Posts 1

    Sure am glad I ran across this thread!  Thanks KevInKauai - your relay-hosting.secureserver.net FINALLY solved my Godaddy form email issue!

    Bobby Rhone
    New Media Solutions
    www.NewMediaFL.com
  • Re: Getting SMTP to Work with GoDaddy

    06-23-2009, 5:42 PM
    Locked
    • Member
      2 point Member
    • vaevictis1986
    • Member since 06-23-2009, 9:32 PM
    • Posts 1

    I am having the same problem listed above. My web.config is set like the post above.  The problem that I am having is that the smtp form speraticly works.  It works for me all the time but i have client call me eveyday telling me that my form is not working.  I have read over a hundred blogs trying to figure out why my form is not working.  I am starting to think it has somthing to do with Godaddy but im not all that sure.  Any Ideas?

     web.config

    <system.net>

    <mailSettings>

    <smtp from=name@domain.com>

    <network host="relay-hosting.secureserver.net" />

    </smtp>

    </mailSettings>

    </system.net>

     

    C# page

     

    System.Web.Mail.MailMessage mailMessage = new System.Web.Mail.MailMessage();

    mailMessage.From = "name@domain.com ";

    mailMessage.To = "name@domain.com";

    mailMessage.Bcc = "name@domain.com";

    mailMessage.Subject = "Subject";

    mailMessage.BodyFormat = System.Web.Mail.MailFormat.Html;

    mailMessage.Body = "<b>First Name:</b> " + tbFirstName.Text +

    "<br><br><b>Last Name:</b> " + tbLastName.Text +

    "<br><br><b>Suffix:</b> " + ddSuffix.SelectedValue.ToString() +

    "<br><br><b>Marital status:</b> " + ddMaritalstatus.SelectedValue.ToString() +

    "<br><br><b>Name of spouse:</b> " + tbNameofspouse.Text +

    "<br><br><b>Street Address:</b> " + tbStreetAddress.Text +

    "<br><br><b>City:</b> " + tbCity.Text +

    "<br><br><b>Country:</b> " + ddCountry.SelectedValue.ToString() +

    "<br><br><b>State:</b> " + ddState.SelectedValue.ToString() +

    "<br><br><b>Zip Code:</b> " + tbZipcode.Text +

    "<br><br><b>Phone:</b> " + tbPhone.Text +

    "<br><br><b>Email:</b> " + tbEmail.Text +

    "<br><br><b>How many children do you have at home?</b> " + ddChildrenHome.SelectedValue.ToString() +

    "<br><br><b>Age of Children Interested In?</b> " + ddAgeChildren.SelectedValue.ToString() +

    "<br><br><b>Sex of Children Interested In?</b> " + ddSex.SelectedValue.ToString() +

    "<br><br><b>How many children are you interested in?</b> " + ddChildrenHome.SelectedValue.ToString() +

    "<br><br><b>Country interested in?</b> " + ddCountryInterested.SelectedValue.ToString() +"<br><br><b>Comment:</b> " + tbComment.Text;

     

     

    System.Web.Mail.
    SmtpMail.SmtpServer = "Relay-Hosting.secureserver.net";

    System.Web.Mail.SmtpMail.Send(mailMessage);

Page 1 of 2 (19 items) 1 2 Next >