当前位置: 代码迷 >> ASP.NET >> 发送email的异常 550 5.7.1 Unable to relay for
  详细解决方案

发送email的异常 550 5.7.1 Unable to relay for

热度:8290   发布时间:2013-02-25 00:00:00.0
发送email的错误 550 5.7.1 Unable to relay for
CSDN   -   技术社区   -   问题  
  推荐给朋友   |   关闭窗口    
 
 
 
    主   题:     有关email的发送问题    
作   者:     go_now   (煅剑)    
等   级:      
信   誉   分:     100    
人   气:     1    
所属社区:     .NET技术   C#    
问题点数:     100      
回复次数:     0    
发表时间:     2007-5-28   17:33:47    
     
 
     
MailMessage     email;    
 
                                                                      email     =     GenericEmail(EmailType.SendEmail,     toUser,     null,     null,     true,     toUser.EnableHtmlEmail);    
 
                                                                      if(email     ==     null)    
                                                                                              return;    
                                                                         
                                                                      email.From     =     GenericEmailFormatter(email.From,     fromUser,     post);    
                                                                      email.Subject     =     GenericEmailFormatter(email.Subject,     toUser,     post);    
                                                                      email.Body     =     GenericEmailFormatter(email.Body,     toUser,     post,     toUser.EnableHtmlEmail);    
                                                                      //SmtpMail.SmtpServer= "smtp.sina.com.cn ";    
  相关解决方案