考虑以下使用 SendGrid 发送电子邮件的 ASP.NET 示例。有没有办法在 JavaScript 中编写等效代码?
@{
string message = "";
if (IsPost) {
var c = new System.Net.Mail.SmtpClient();
c.Send("from@domain.com", "email@domain.com", "subject", "body");
}
}
谢谢你。