Mail Delivery Subsystem 发送至 我 
显示详细信息 15:01 (0分钟前) 回复
This is an automatically generated Delivery Status NotificationDelivery to the following recipient failed permanently:    [email protected] details of permanent failure:
Google tried to deliver your message, but it was rejected by the recipient domain. We recommend contacting the other email provider for further information about the cause of this error. The error that the other server returned was: 550 550 sorry, no mailbox here by that name. (#5.7.17)
 (state 14).  ----- Original message -----Received: by 10.142.156.19 with SMTP id d19mr6438007wfe.190.1230706898435;
       Tue, 30 Dec 2008 23:01:38 -0800 (PST)
Return-Path: <[email protected]>
Received: from changhuiyong ([218.68.149.159])
       by mx.google.com with ESMTPS id 24sm30057308wfc.2.2008.12.30.23.01.35
       (version=TLSv1/SSLv3 cipher=RC4-MD5);
       Tue, 30 Dec 2008 23:01:37 -0800 (PST)
Message-ID: <[email protected]>
MIME-Version: 1.0
To: [email protected]
Cc: [email protected]
X-Priority: 1
Priority: urgent
Importance: high
Subject: =?utf-8?B?6L+Z5piv5rWL6K+V6YKu5Lu2?=
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: base64
From: [email protected]
Date: Tue, 30 Dec 2008 23:01:37 -0800 (PST)6YKu5Lu25YaF5a65

解决方案 »

  1.   

    这是自动生成的发送状态通知发送给收件人接收一直失败:     [email protected]技术细节上一直失败:
    谷歌试图传递您的邮件,但接收方拒绝接受。我们建议联络其他电子邮件服务提供商来进一步了解导致这个错误的信息。这个错误,其他服务器返回是: 550 550抱歉,这里没有信箱的名称。 ( # 5.7.17 )
    (状态14 ) 。   -----邮件原件-----收到:由10.142.156.19接收, SMTP id d19mr6438007wfe.190.1230706898435 ;
          星期二, 2008年十二月30日23点01分38秒-0800 (标准时间)
    返回路径: <[email protected]>
    收稿:从changhuiyong ( [ 218.68.149.159 ] )
          由mx.google.com与ESMTPS编号24sm30057308wfc.2.2008.12.30.23.01.35
           (版本= TLSv1/SSLv3密码= RC4 , MD5编码) ;
          星期二, 2008年十二月30日23时01分37秒-0800 (标准时间)
    邮件ID : “ 495b18d1.18038e0a.1688.fffff9f0 @ mx.google.com ”
    MIME的版本: 1.0
    发送到: [email protected]
    抄送: zhao.jinying @ bticest.com
    X的优先级: 1
    优先顺序:紧急
    重要性:高
    主题: =?utf-8?B?6L+Z5piv5rWL6K+V6YKu5Lu2?= 
    内容类型:text/plain; charset=utf-8 
    内容传输编码:base64 
    来自: zjy.company @ gmail.com
    日期:星期二, 08年12月三十〇日23时01分三十七秒-0800 (标准时间)6YKu5Lu25YaF5a65
    总体来说:收件人输入错误!
      

  2.   

            #region
            System.Net.Mail.MailMessage msg = new System.Net.Mail.MailMessage();        string SendName = TextBox1.Text;收件人地址         msg.To.Add(SendName);        msg.From = new MailAddress(SendName, null, System.Text.Encoding.UTF8);        msg.Subject = "这是测试邮件";//邮件标题 
            msg.SubjectEncoding = System.Text.Encoding.UTF8;//邮件标题编码 
            msg.Body = "邮件内容";//邮件内容 
            msg.BodyEncoding = System.Text.Encoding.UTF8;//邮件内容编码 
            msg.IsBodyHtml = false;//是否是HTML邮件 
            msg.Priority = MailPriority.High;//邮件优先级 
            SmtpClient client = new SmtpClient();
           client.Credentials = new System.Net.NetworkCredential("[email protected]", "123456789abcd");//上述写你的GMail邮箱和密码 
            client.Port = 587;//Gmail使用的端口 
           client.Host = "smtp.gmail.com";
           client.EnableSsl = true;//经过ssl加密 
            try
            {
                client.Send(msg);
                Response.Write("发送成功");
            }
            catch (System.Net.Mail.SmtpException ex)
            {
                Response.Write(ex.ToString());
            } 
            #endregion