2
我在我的MVC網站中使用ActionMailer.Net發送郵件,我想從gmail發送郵件,但是gmail需要EnableSsl = True才能發送,但是我不知道在ActionMailer.net的哪個地方我可以配置這個。如何使用ActionMailer.Net發送電子郵件時設置EnableSsl = True?
我在我的MVC網站中使用ActionMailer.Net發送郵件,我想從gmail發送郵件,但是gmail需要EnableSsl = True才能發送,但是我不知道在ActionMailer.net的哪個地方我可以配置這個。如何使用ActionMailer.Net發送電子郵件時設置EnableSsl = True?
你必須編輯你的web.config文件是這樣的:
<system.net>
<mailSettings>
<!-- Method#1: Configure smtp server credentials -->
<smtp from="[email protected]">
<network enableSsl="true" host="smtp.gmail.com" port="587" userName="[email protected]" password="valid-password" />
</smtp>
</mailSettings>
</system.net>
參考:
http://www.hanselman.com/blog/NuGetPackageOfTheWeek2MvcMailerSendsMailsWithASPNETMVCRazorViewsAndScaffolding.aspx\
接縫,它會工作,將測試一下看看。 – 2011-06-19 18:00:43
我愛你!迅速 – Tejo 2013-04-02 23:08:15