ASP.NET 2.0 Configuration Hey folks.
I'm trying to configure my application to use our Zimbra server and although it seems like a simple task, I don't have it quite right apparently. I'm wondering if anyone has configured a similar setup successfully, and if they would share what they did if so.
Here's what I was trying:
<system.net>
<mailSettings>
<smtp from="MyAddress@MyDomain.com">
<network host="whatever.MyDomain.com"
port="80"
userName="MyAddress@MyDomain.com"
password="myPassword"
/>
</smtp>
</mailSettings>
</system.net> |