Hi, is there something that I need to have setup to send email from a .aspx page using .net 2.0? I set up web.config as such:
<system.net>
<mailSettings>
<smtp>
<network
host="mail.domain.com"
port="25"
userName="
[email protected]"
password="pswd" />
</smtp>
</mailSettings>...