//创建MailMessage对象
MailMessage mailMsg = new MailMessage();
//设置收件人的邮件地址
mailMsg.To = txt_SendMail.Text;
//设置发送者的邮件地址
mailMsg.From = System.Configuration.ConfigurationSettings.AppSettings["MailFrom"];
//设置邮件主题
mailMsg.Subject = txt_MailTitle.Text;
//设置邮件内容
mailMsg.Body = txt_DP.Text;

mailMsg.BodyFormat = MailFormat.Text;
//设置发送邮件服务器
SmtpMail.SmtpServer = "192.168.1.101";//"smtp.163.com";
//发送邮件
SmtpMail.Send(mailMsg);已开通邮件服务器
为 192.168.1.101 
发送时出错:
The server rejected one or more recipient addresses. The server response was: 550 5.7.1 Unable to relay for [email protected]  
为什么