I have to used Multiple smtp detail in web.config file, may I used like this and how i can access different smtp for different purposes. I want to used first smtp for logging error. and second for successful mail to users.
Example
<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="test@gmail.com">
<network defaultCredentials="false" host="smtp.gmail.com" port="587" userName="test@gmail.com" password="test"/>
</smtp>
<smtp deliveryMethod="Network" from="tes2t@gmail.com">
<network defaultCredentials="false" host="smtp.gmail.com" port="587" userName="tes2t@gmail.com" password="test2"/>
</smtp>
</mailSettings>
How i can use first smtp for logging and second smtp for success msgs.