Hello Imar,
following your explanations in chapter 9, I manage to send an email dropping it in a folder on my local hard drive, but I fail to send it both from gmail and yahoo accounts.
Excerpt from Web.config for yahoo
Code:
<smtp deliveryMethod="Network" from="xxxxxx@yahoo.com">
<network host="smtp.mail.yahoo.com" password="xxxxxxx" userName="xxxxxx@yahoo.com" />
</smtp>
Excerpt from Web.config for gmail
Code:
<smtp deliveryMethod="Network" from="yyyyyy@gmail.com">
<network enableSsl="true" host="smtp.gmail.com" password="yyyyyy" userName="yyyyyyy@gmail.com" port="587" />
</smtp>
The error I get is the following:
From the script debugger in Internet Explorer
File ScriptResource.axd
Line: 940
Error: Sys.WebForms.PageRequestManagerServerErrorExceptio n: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500
Can you give me some hints ?
Thank you