ASP.NET Web ページから外部の電子メール アドレスに電子メールを送信できません。
以下は私のコードです:
Dim oMsg As System.Net.Mail.MailMessage = New System.Net.Mail.MailMessage()
Dim add As New MailAddress("emailaddy@external_address.com")
oMsg.From = New MailAddress("something@mydomain.com")
oMsg.To.Add(add)
oMsg.Subject = "Your Account Details & Information"
oMsg.Body = "my body text"
oMsg.IsBodyHtml = True
Dim smtp As New System.Net.Mail.SmtpClient("local_smtp_server", 25)
smtp.DeliveryMethod = SmtpDeliveryMethod.Network
smtp.Credentials = New System.Net.NetworkCredential("auser@mydomain.com", "mypassword")
smtp.Send(oMsg)
私が欠けているものはありますか?ローカルのメールに送信すると、問題なく動作します。
MS Exchange Server で変更する必要があるものはありますか?
コードサンプルはC#でも提供できます...