このよく読まれた投稿のコードを使用する場合
var smtp = new SmtpClient
{
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
DeliveryMethod = SmtpDeliveryMethod.Network,
UseDefaultCredentials = false,
Credentials = new NetworkCredential("my email", "my password")
};
System.Security.SecurityException: Request for the permission of type 'System.Net.Mail.SmtpPermission.
このコードは特別なホスティング環境で使用する必要がありますか、それとも明らかな何かが欠けていますか?
ありがとう!