Hello:
I am newbie and now compleated reading chapter 3 of asp.net 2.0 web programming problem-design-solution.
I am doing with C#.
Not able to send eamil message with contract.aspx page.
I am running the site in my localhost. I am trying to send email to myself and doing the following in web.config file. It shows the label message that my email is sent, but i did not receive it in my yahoo email. Why is that???
<system.net>
<mailSettings>
<smtp deliveryMethod="PickupDirectoryFromIis" from="r
[email protected]">
<network defaultCredentials="true" host="(localhost)" port="25"/>
</smtp>
</mailSettings>
</system.net>
Also, I tried setting up smtp deliveryMethod="Network" , then my error label shows that unable sending message...
I will appreciate your help.
Thank you