我有一个想在我的 Web 表单应用程序上使用的类文件。这是我在网上找到的一个。我已将它放在 App_Code 文件夹中,并尝试在活动中使用它
protected void sendBtn_Click(object sender, EventArgs e)
{
}
类文件:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
public class SendEmail
{
public void SendMailMessage(string from, string to, string bcc, string cc, string subject, string body)
{
// Instantiate a new instance of MailMessage
MailMessage mMailMessage = new MailMessage();
// Set the sender address of the mail message
mMailMessage.From = new MailAddress(from);
// Set the recepient address of the mail message
mMailMessage.To.Add(new MailAddress(to));
// Check if the bcc value is null or an empty string
if ((bcc != null) && (bcc != string.Empty))
{
// Set the Bcc address of the mail message
mMailMessage.Bcc.Add(new MailAddress(bcc));
} // Check if the cc value is null or an empty value
if ((cc != null) && (cc != string.Empty))
{
// Set the CC address of the mail message
mMailMessage.CC.Add(new MailAddress(cc));
} // Set the subject of the mail message
mMailMessage.Subject = subject;
// Set the body of the mail message
mMailMessage.Body = body;
// Set the format of the mail message body as HTML
mMailMessage.IsBodyHtml = true;
// Set the priority of the mail message to normal
mMailMessage.Priority = MailPriority.Normal;
// Instantiate a new instance of SmtpClient
SmtpClient mSmtpClient = new SmtpClient();
// Send the mail message
mSmtpClient.Send(mMailMessage);
}
}
我无法访问这些方法并尝试了以下方法:
SendEmail send = new SendEmail();
var send = new SendEmail();
SendEmail.SendMailMessage
using SendEmail
这一切都无济于事。
我是一个绝对的初学者