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");
}
}
ありがとうございました。