如何从gmail,hotmail,rediffmail以外的网站发送邮件。没有提供任何API。是否有条款可以在任何编程语言中实现。我认为我要使用的域名没有任何验证码检查。 我还想附上一个文件夹。
答案 0 :(得分:1)
如果您询问其他域名,例如您自己的域名,则可以使用以下方法:
添加using System.Net.Mail;
然后在某些情况下
MailMessage mail = new MailMessage();
SmtpClient SmtpServer = new SmtpClient("mail.yoursite.com");
mail.From = new MailAddress("testing@yoursite.com");
mail.To.Add("youremail@address.com");
mail.Subject = "New Email";
mail.Body = "add text here from controls";
SmtpServer.Port = 25;
SmtpServer.Credentials = new System.Net.NetworkCredential("testing@yoursite.com", "passhere");
SmtpServer.EnableSsl = false;
SmtpServer.Send(mail);
MessageBox.Show("All Done");