Hi:
Thanks for your response.
I Got it fixed. My original code was:
<smtp deliveryMethod="PickupDirectoryFromIis" from="mail@MyWebSite.com">
<network defaultCredentials="true" host="(localhost)" port="25"/>
</smtp>
The correct format for the host's servers is as follows:
<smtp from="mail@MyWebSite.com">
<network host="127.0.0.1" port="8025"/>
</smtp>
Then, after making that change in the webconfig file, it still wouldn't work until the Microsoft SMTP service component on there server was restarted.
Thanks,
Rachel