我的根 web.config 中有这个
<mailSettings>
<smtp from="no-reply@test.com" deliveryMethod="SpecifiedPickupDirectory">
<specifiedPickupDirectory pickupDirectoryLocation="C:\temp"/>
<network host="localhost"/>
</smtp>
</mailSettings>
当然,当我把它放到我的托管服务器上时,我不希望它保存到硬盘上,我希望它发送电子邮件。
所以我会有这样的东西
<system.net>
<mailSettings>
<smtp deliveryMethod="Network">
<network host="smtp.mysite.com" userName="myuser" password="mypassword" />
</smtp>
</mailSettings>
</system.net>
我怎么能把它放在我的 web.release.config 中?我应该只替换mailSettings。我还不确定如何进行转换。