我想知道如何从我的电脑发送 emai 我没有任何服务器来测试我的代码,我想我可以使用 google/yahoo smtp 但我不知道如何使用它们。我想知道我是否使用google/yahoo smtp 那么我可以向每个人发送电子邮件吗?而且我不知道我应该在 sc.Credentials = new NetworkCredential(username,password); 我将我在 web.config 文件中定义的管理员用户名和密码放在凭据标记中,这是我的代码:
protected void SendMail(string ma,DataRow dataRow)
{
try
{
string from = "myEmail@yahoo.com";
string subject = "forgotten password";
string body = "name: " + dataRow["user_name"].ToString() + "<br/>" + "familly : " + dataRow["user_familly"].ToString() + "<br/>" + "password : " + dataRow["user_password"].ToString();
System.Net.Mail.MailMessage mail = new System.Net.Mail.MailMessage(from, ma, subject, body);
mail.IsBodyHtml = false;
System.Net.Mail.SmtpClient sc = new System.Net.Mail.SmtpClient();
sc.Port = 587;
sc.Host = "smtp.mail.yahoo.com";// "smtp.gmail.com";
sc.EnableSsl = false;
sc.Send(mail);
Label1.ForeColor = System.Drawing.Color.Blue;
Label1.Text = "your password sent";
}
catch (Exception e)
{
Label1.Text = e.ToString();
}
}