BPM Email

I’m guessing the in-transaction piece is working, but when it goes to Standard DD its querying all the jobs. You can use some code to build the Send Email into the In-Transaction BPM and test it out.

var mailer = this.GetMailer(async: false);
var message = new Ice.Mail.SmtpMail();
message.To.Add(“ToEmail@email.com”);
message.SetFrom(“FromEmail@email.com”);
message.SetSubject(“Subject Text”);
message.SetBody(“Body Text”);
mailer.Send(message);

1 Like