发送邮件时出错:smtpexception发送邮件失败 [英] Error while sending mail: smtpexception failure sending mail

查看:364
本文介绍了发送邮件时出错:smtpexception发送邮件失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个Windows应用程序表单,用于向多个电子邮件发送电子邮件通知。我会通知员工,他们的帐户已经记入了索赔。我收到错误发送邮件失败



I have a windows application form for sending email notification to multiple email. I will notify employees that claims is already credited in their account. I got an error "failure sending mail"

SMTP.Send(Email)

'错误在这个



我尝试过:



这是我的代码< br $>


'error on this

What I have tried:

Here's my code

Private Sub SendMail(ByVal vEmail As String, ByVal vName As String, ByVal vDetail As String)

        Dim Txt As String
        Dim tmp1 As String
        Dim tmp As String
        Dim client As New Net.Mail.SmtpClient()
        Mailer = New Net.Mail.MailMessage
        With Mailer

            'Dim SendRes As String
            Dim SMTP As New Net.Mail.SmtpClient("************")
            Dim Email As New Net.Mail.MailMessage()
            SMTP.Port = 25
            SMTP.UseDefaultCredentials = False
            SMTP.Credentials = New Net.NetworkCredential("******", "*******")
            SMTP.EnableSsl = True

            Email = New Net.Mail.MailMessage()
            'From
            Email.From = New Net.Mail.MailAddress("************")

            Txt = ""

            If vEmail = "none" Then
                vEmail = GetSenderEmail()
                Txt = vbCrLf
                Txt = Txt & vbCrLf
                Txt = Txt & "NOTE:"
                Txt = Txt & vbCrLf
                Txt = Txt & "Please update email address."
                Txt = Txt & vbCrLf
                Txt = Txt & "*** Please add the email address of " & vName & " in your vendors profile."
            Else

                Email.CC.Add("*********")
                'GetSenderEmail()

            End If

            'To
            Email.To.Add("*********")

            'Subject
            Email.Subject = "Payroll Account Credit (Please Do Not Reply)"

            'BODY

            tmp1 = "Your payroll account was/will be credited on  " & DTdateCredit.Value & "" & vbNewLine
            tmp = tmp1 & vbNewLine
            tmp = tmp1 & "***Below are the details:" & vbNewLine
            tmp = tmp1 & vbNewLine
            tmp = tmp1 & vDetail
            tmp = tmp1 & tmp & Txt

            Email.Body = tmp
            Email.IsBodyHtml = False

            SMTP.Send(Email)
            MsgBox("Sent Successfully")
            Email.Dispose()


        End With
        Mailer = Nothing

    End Sub

推荐答案

如果没有有意义的错误消息,这是无法解决的。



为了得到它,请尝试将代码包含在内阻止并报告捕获的异常:

This can't be solved without having a meaningful error message.

To get that enclose your code with a try block and report catched exceptions:
Try
    ' Email sending code here
Catch ex As Exception
    MsgBox(ex.ToString)
End Try

该邮件应包含SMTP错误代码和文本,告诉您邮件无法发送的原因l ike无效凭据,无法中继,未知收件人,邮箱已满。

The message should then contain the SMTP error code and text telling you why the mail couldn't be send like invalid credentials, unable to relay, unknown recipient, mailbox full.


这篇关于发送邮件时出错:smtpexception发送邮件失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆