Yukarıda belirtilen durumlardan birkaçı nedeniyle, gmail hesabımdan e-posta gönderirken bazı sorunlar yaşadım. İşte nasıl çalıştığını ve aynı zamanda esnek tutmanın bir özeti:
- Her şeyden önce GMail hesabınızı kurun:
- IMAP erişimini etkinleştirin ve doğru maksimum sayıda ileti olduğunu iddia edin (buradan yapabilirsiniz)
- Şifrenizin en az 7 karakterden ve güçlü olduğundan emin olun (Google'a göre)
- Önce bir captcha kodu girmenize gerek olmadığından emin olun. Bunu tarayıcınızdan bir test e-postası göndererek yapabilirsiniz.
- Web.config'de değişiklik yapın (veya app.config, henüz denemedim, ancak bir Windows uygulamasında çalışmasını sağlamak kadar kolay olduğunu düşünüyorum):
<configuration>
<appSettings>
<add key="EnableSSLOnMail" value="True"/>
</appSettings>
<!-- other settings -->
...
<!-- system.net settings -->
<system.net>
<mailSettings>
<smtp from="yourusername@gmail.com" deliveryMethod="Network">
<network
defaultCredentials="false"
host="smtp.gmail.com"
port="587"
password="stR0ngPassW0rd"
userName="yourusername@gmail.com"
/>
<!-- When using .Net 4.0 (or later) add attribute: enableSsl="true" and you're all set-->
</smtp>
</mailSettings>
</system.net>
</configuration>
Add a Class to your project:
Imports System.Net.Mail
Public Class SSLMail
Public Shared Sub SendMail(ByVal e As System.Web.UI.WebControls.MailMessageEventArgs)
GetSmtpClient.Send(e.Message)
'Since the message is sent here, set cancel=true so the original SmtpClient will not try to send the message too:
e.Cancel = True
End Sub
Public Shared Sub SendMail(ByVal Msg As MailMessage)
GetSmtpClient.Send(Msg)
End Sub
Public Shared Function GetSmtpClient() As SmtpClient
Dim smtp As New Net.Mail.SmtpClient
'Read EnableSSL setting from web.config
smtp.EnableSsl = CBool(ConfigurationManager.AppSettings("EnableSSLOnMail"))
Return smtp
End Function
End Class
Ve şimdi e-posta göndermek istediğinizde yapmanız gereken tek şey SSLMail.SendMail
:
ör. PasswordRecovery kontrolüne sahip bir Sayfada:
Partial Class RecoverPassword
Inherits System.Web.UI.Page
Protected Sub RecoverPwd_SendingMail(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.MailMessageEventArgs) Handles RecoverPwd.SendingMail
e.Message.Bcc.Add("webmaster@example.com")
SSLMail.SendMail(e)
End Sub
End Class
Veya kodunuzdaki herhangi bir yeri arayabilirsiniz:
SSLMail.SendMail(New system.Net.Mail.MailMessage("from@from.com","to@to.com", "Subject", "Body"})
Umarım bu yazıya giren herkese yardımcı olur! (VB.NET kullandım, ancak herhangi bir .NET diline dönüştürmenin önemsiz olduğunu düşünüyorum.)