Form Wizard Pro Email

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
9/19/2011 9:51:34 AM
Gravatar
Total Posts 33

Form Wizard Pro Email

The email smtp is configured in the user.config file and am able to send email through custom modules. However, I think there seems to be a problem receiving emails when sent from Form Wizard Pro Forms or contact us. Not sure if there is something am missing. I haven't configured the mail tab of admin settings page instead as mentioned configured smtp in user.config.

Also most of the times the mails are received after a very long time after the mails are sent from the custom module. There could be an issue with Godaddy as well in this regard. The mails are not instantaneous.

Looking for an external bulk smtp service that is reliable and can be used for bulk mail newsletters. Any suggestions are highly appreciated.

9/19/2011 12:20:07 PM
Gravatar
Total Posts 18439

Re: Form Wizard Pro Email

I'm using Elastic Email for my newsletter and forum emails, as discussed in the article Sending Bulk Emails.

However as noted on this thread, GoDaddy won't let you use external smtp servers other than their own and they do limit how many emails you can send and how fast they are sent.

Hope that helps,

Joe

9/19/2011 2:54:21 PM
Gravatar
Total Posts 33

Re: Form Wizard Pro Email

Thanks for the prompt response. I couldn't figure why mails sent from the custom module did work and those that sent from form wizard / contact us form didn't go through. I think am missing something (config) some where. In fact I tried the forgot password and that didn't go through either.

Below is the settings on web.config

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

 

And in the user.config

<add key="DisableDotNetOpenMail" value="true"/>
  <add key="SMTPServer" value="relay-hosting.secureserver.net"/>
  <add key="SMTPRequiresAuthentication" value="true"/>
  <add key="SMTPUseSsl" value="false"/>
  <add key="SMTPPort" value="25"/>
  <add key="SMTPUser" value="userid@godaddyhosteddomain.com"/>
  <add key="SMTPPassword" value="pwd"/>
  <add key="SMTPTimeoutInMilliseconds" value="30000"/>

 

code used in custom module to send mail (which is working)

           myMail.Body = msg.ToString();
            myMail.IsBodyHtml = true;
            SmtpClient smtp = new SmtpClient();
            smtp.Credentials = CredentialCache.DefaultNetworkCredentials;
            smtp.Send(myMail);

 

Regarding external smtp service, I will explore Elastic Email. Looks interesting and economical.

Further, what are your thoughts on minimum things to be considered for legal compliance especially when sending bulk emails.

9/19/2011 6:23:43 PM
Gravatar
Total Posts 33

Re: Form Wizard Pro Email

No worries figured it out. It is a multi-site setting and each site has to be configured with the relay server setting.

You must sign in to post in the forums. This thread is closed to new posts.