Getting this error from Pages/Contact.aspx which uses the Contact block. in the open source 2.0 version.
<span class="error" id="ctl00_ContentPlaceHolderMain_container_Block_64_lblStatus">"Failed to send email. Please verify email address is correct. Or you could send email directly to xxx@xxx.xxx"</span>
This occurs when I check the box labled I would like a copy of this email. "</span>
When the box is unchecked. The form reports success!
I did check with my ISP as other posts suggested, and I do have SMTP authentication set up correctly for mail relay in the web.config:
<mailSettings>
<smtp from=xxx@xxx.xxx networkhost= "mail.xxx.xxx " userName="xxx@xxx.xxx" password= "xxxx"/>
</mailSettings>
According to my ISP all that is required is to have the from and username attributes exactly the same and to use the password attribute
This same webconfig works fine in other applications.
What other troubleshooting steps should I take?
|