I can not get any of the email portions of mojoportal to work. Can some some tell me what I'm doing wrong. I'm using webhostforasp.net as my host. My website address is www.pmsphx.com. I have set up an email address web@pmsphx.com
When using 'Contact' mojo reports message sent but no email is sent.
Thanks Alan
<!-- ******* email settings
Note you also need to specify smtp settings further below in system.net section the settings here appply to features but
the settings in the system.net.mailsettigns section are used by site registration and password recovery -->
<add key="DisableDotNetOpenMail" value="true" />
<add key="SMTPServer" value="smtp.mail.pmsphx.com" />
<add key="SMTPRequiresAuthentication" value="false" />
<add key="SMTPUseSsl" value="false" />
<add key="SMTPPort" value="25" />
<add key="SMTPUser" value="web@pmsphx.com" />
<add key="SMTPPassword" value="NOTSHOWN" />
<add key="SMTPTimeoutInMilliseconds" value="30000" />
<!-- leave this blank for ascii encoding -->
<add key="SmtpPreferredEncoding" value="" />
<!-- example for Russian encoding
<add key="SmtpPreferredEncoding" value="koi8-r" />
-->
<!-- ******* end email settings -->
<system.net>
<mailSettings>
<smtp from="web@pmsphx.com">
<network host="mail.pmsphx.com" port="25" password="NOTSHOWN" userName="web@pmsphx.com" />
</smtp>