2011-06-17 90 views

回答

1

嘗試使用System.Mail和system.net.mail,但您必須爲此配置郵件設置。

1

如果您設置了SQL Server數據庫郵件,則會有一個SMTP配置文件。

這意味着您可以使用inbuilt .net classes使用相同的SMTP配置文件發送郵件。

一些基本代碼:

var message = new MailMessage(from, to, subject, body) 
var smtpClient = new SmtpClient("mySMTPserver.intra.net"); 
smtpClient.UseDefaultCredentials = true; 
smtpClient.Send(message);