如何创建临时电子邮件并使用Acumatica发送

时间:2015-03-25 16:48:52

标签: erp acumatica

在Acumatica中,您可以使用通知自动发送一些电子邮件。 在我的场景中,我们正在创建一个流程,在非特定(非设置)时间需要在触发特定条件时发送电子邮件,例如员工需要知道他们需要做某事。

我们正在将此逻辑构建到系统中,我正在寻找一个代码示例,说明如何在发生这种情况时发送电子邮件。

我们将使用电子邮件模板,但需要在代码中完成这一壮举。 我希望应该有一些acumatica电子邮件类,我们可以在其中调用它并传递所需的信息,如:

PX.Common.email.Send(params)...

任何示例代码都将受到赞赏。

2 个答案:

答案 0 :(得分:2)

在这里,我想展示发送电子邮件的简短版本:

using PX.Objects.EP;
using PX.Data.EP;
**...**

var sender = new NotificationGenerator
{

    To = "someone@example.com",
    Subject = $"Subject information {DateTime.Now:d}",
    Body = "Body of message",
    BodyFormat = EmailFormatListAttribute.Text
};

sender.Send();

答案 1 :(得分:1)

事实证明,有一篇知识库文章提供了如何执行此操作的示例。 对于我们的方案,这是一个更新版本的代码,已经过验证,可以使用2个电子邮件模板之一发送电子邮件。

    private void mSendEmail(string toEmail, int? emailTemplateID, long? noteid, string source, string toDisplayName)
    {
        bool sent = false;
        string sError = "Failed to send E-mail.";
        POOrder porec = poOrder.Select(noteid);
        EPExpenseClaim eprec = epExpense.Select(noteid);

        try
        {
            Notification rowNotification = PXSelect<Notification,
                                              Where<Notification.notificationID, Equal<Required<Notification.notificationID>>>>.Select(this, emailTemplateID);

            if (rowNotification == null)
                throw new PXException(PXMessages.Localize("Notification Template for Escalation is not specified."));

            if (String.IsNullOrEmpty(toEmail))
                throw new PXException(PXMessages.Localize("E-mail is not specified for Escalation Employee. Name=[" + toDisplayName +"]"));
            if (source == "PO")
            {
                var sender = TemplateNotificationGenerator.Create(porec, rowNotification.NotificationID.Value);
                sender.MailAccountId = rowNotification.NFrom.HasValue ?
                                       rowNotification.NFrom.Value :
                                       PX.Data.EP.MailAccountManager.DefaultMailAccountID;

                sender.To = toEmail;
                IEnumerable<EPActivity> epActivityArray = sender.Send();
                if (epActivityArray.Count() > 0)
                { sent = true; }
            }
            if (source == "EP")
            {
                var sender = TemplateNotificationGenerator.Create(eprec, rowNotification.NotificationID.Value);
                sender.MailAccountId = rowNotification.NFrom.HasValue ?
                                       rowNotification.NFrom.Value :
                                       PX.Data.EP.MailAccountManager.DefaultMailAccountID;

                sender.To = toEmail;
                IEnumerable<EPActivity> epActivityArray = sender.Send();
                if (epActivityArray.Count() > 0)
                { sent = true; }
            }
        }
        catch (Exception Err)
        {
            sent = false;
            sError = Err.Message;
        }

        if (!sent)
            throw new PXException(PXMessages.Localize(sError));

    }