|
-
Apr 28th, 2006, 04:20 AM
#1
Thread Starter
Fanatic Member
asp.net 2.0 email settings
Hi,
I would like to be able to send emails from the asp.net 2.0 website when recovering a password using the password recovery control.
I do have the IP addresses for email Gateway and the mail server.
Where do I set these settings please? Is it somewhere in the web.config?
Thanks
-
Apr 28th, 2006, 04:32 AM
#2
Re: asp.net 2.0 email settings
<system.net>
<mailSettings>
<smtp deliveryMethod="Network">
<network defaultCredentials="True" host="10.0.0.1" port="25" from="[email protected]"/>
</smtp>
</mailSettings>
</system.net>
-
Apr 28th, 2006, 04:56 AM
#3
Thread Starter
Fanatic Member
Re: asp.net 2.0 email settings
Where are you using the IP addresses for mail server and the email gateway please?
Thanks
-
Apr 28th, 2006, 04:57 AM
#4
Thread Starter
Fanatic Member
Re: asp.net 2.0 email settings
This is what I have at present.
Is it ok?
<mailSettings>
<smtp deliveryMethod="network" from="[email protected]">
<network host="127.0.0.1" port="25" defaultCredentials="true"/>
</smtp>
</mailSettings>
</system.net>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|