I am sending email using my domain account
[email protected] to gmail,yahoo,hotmail and other domain emails like
[email protected] , my credentials are 100% correct because they are sending emails to all other accounts except this domain
[email protected] , yesterday i check that my method also send an email to that address but today it is not sending neither it is giving any error ? what would be the cause ?
Private Sub SendHtmlFormattedEmail(ByVal recepientEmail As String, ByVal subject As String, ByVal body As String)
Dim mailMessage As System.Net.Mail.MailMessage = New System.Net.Mail.MailMessage
Try
mailMessage.From = New MailAddress(ConfigurationManager.AppSettings("UserName"))
mailMessage.Subject = subject
mailMessage.Body = body
mailMessage.IsBodyHtml = True
mailMessage.To.Add(New MailAddress(recepientEmail))
Dim files As List(Of HttpPostedFile) = DirectCast(Cache(Me.Key), List(Of HttpPostedFile))
For Each file As HttpPostedFile In files
mailMessage.Attachments.Add(New Attachment(file.InputStream, Path.GetFileName(file.FileName), file.ContentType))
Next
Dim smtp As SmtpClient = New SmtpClient()
smtp.Host = "202.165.228.15"
smtp.EnableSsl = False
smtp.Credentials = New System.Net.NetworkCredential("
[email protected]", "Pakistan_123")
smtp.Port = 2525
smtp.Send(mailMessage)
Catch ex As Exception
ex.Message.ToString()
End Try
End Sub