MVC3 で添付ファイル付きのメールを送信する必要があります
メールコードを送信しましたが、MVC3でファイルを添付してメールを送信するにはどうすればよいですか
public void SendConfirmationEmail(string file)
{
string verifyUrl = //need to send that file URL code saving that file
//on server drive
var message = new MailMessage("YOUR_USER_ACCOUNT_HERE@YOUR_DOMAIN_HERE", "SENDERS EMAIL ID")
{
Subject = "Please confirm attachment",
Body = verifyUrl
//Also send attachment file code
};
var client = new SmtpClient();
client.Send(message);
}