configure smtp email settings with asp.net configuration

  • Thread starter Thread starter barry
  • Start date Start date
B

barry

Could someone send me the web.config portion that is created when you
configure the e-mail settings
using the asp.net configuration tool. My tool is not working.

thanks
 
Could someone send me the web.config portion that is created when you
configure the e-mail settings
using the asp.net configuration tool. My tool is not working.

thanks
Here is mine. (done by hand)

<system.net>
<mailSettings>
<smtp deliveryMethod="network"
from="(e-mail address removed)">
<network host="mail.xxx.info"
port="25" defaultCredentials="true"/>
</smtp>
</mailSettings>
</system.net>
Peter Kellner
http://peterkellner.net
 
Thank you very much
PeterKellner said:
Here is mine. (done by hand)

<system.net>
<mailSettings>
<smtp deliveryMethod="network"
from="(e-mail address removed)">
<network host="mail.xxx.info"
port="25" defaultCredentials="true"/>
</smtp>
</mailSettings>
</system.net>
Peter Kellner
http://peterkellner.net
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top