How to send email in Acumatica
18 November 2023
Hi,
today want to share quick code snippet on how to send email from Acumatica. For this purpose, good usage is for NotificationGenerator. See the code below:
public virtual void SendEmailNotification(string email, string subject, string emailBody) { var sender = new NotificationGenerator { To = email, Subject = subject, Body = emailBody, BodyFormat = EmailFormatListAttribute.Html }; sender.Send(); }