The standard Service Email rule EmailDefault.Work-.CreateEmailFlow (and the associated service activity Work-.ProcessInboundEmail) support email conversations. When appropriately configured, each email correspondence contains a unique identifier (in the message header) associated with the originating work item ID. A reply to that email also contains that ID. The ProcessInboundEmail activity attaches the email to the work item.
You can perform approvals or other actions on work items using email-based work processing. You can configure the application to send an approver an email that contains hyperlinks to non-local flow actions. The approver can click the appropriate flow action, then send the response. An email listener validates the response and creates a work item using the service activity pyCreateAndManageWorkFromEmail, then delegates processing to the pyProcessEmailRequest agent.
The Work- base class has a Page
mode property named pyInboundEmail. The page class of this property, Embed-Services-InboundEmailInfo, provides standard properties that represent the individual components of email messages: to, from, subject, body, date, and so on. When the purpose of your email service is to create new work items or to manage delivery failure messages for correspondence generated during flow processing, you and the Email Wizard can use these standard properties to map email data directly to the clipboard without having to create additional properties.
When you use the accelerator to generate email services, it configures the following inbound mappings:
You can also use .pyInboundEmail.Date for mapping the value from the Date field.
The Embed-Services-InboundEmailInfo class also provides standard properties that represent the individual components of Delivery Status Notification messages. You can use the following standard properties to map DSN data directly to the clipboard without having to create additional properties:
When the service activity is finished with its processing, the email service sends the response configured on its Response tab through the email listener. If another email message is sent at a later point in the flow processing, that message is managed by an outbound email account and not by the email listener.
The Work- base class has two standard HTML rules that you can use for the service rule’s response:
When you use the Email Accelerator to generate email services, it uses these standard HTML stream rules in the response. You can edit the stream rules or change the outbound mapping as necessary.
If an incoming email message contains attachments, the email listener creates a page named pyAttachmentPage
of class Data-ServiceMessage and puts the attachments on that page. When you use the Email Wizard to create an email service that creates work items, the generated service activity automatically extracts the files from the pyAttachmentPage
and uses them as work item attachments.
If you create an email service without using the Wizard, and you want the service to use the attached files as work item attachments, configure the service activity to handle work items. For information, see PDN article How to save an incoming email message as a work item attachment using Email Service rules.
To test arriving email attachments for software viruses, override the extension point activity Data-WorkAttach-File.CallVirusCheck with an activity that calls your third-party virus software. Your activity can call a Java class or (in a Microsoft Windows server) a Dynamic Linked Library routine.
To test outbound email, run through the entire flow and then verify that notify and other email messages are delivered the way you expect them to be.
To test inbound email, start with the listener. From the listener form, click the Test Connectivity button to ping the email server. Then use the System Management application to verify that the listener is running. Open the email service rule and use the Run Rule feature to run it. Finally, from the external application, send a request message to the inbox monitored by the email listener. Then check the inbox of the external application to determine whether the response message arrived and whether it contains the information you expected.
See also the PDN document Testing Services and Connectors for information.
You can use the following Pega 7 Platform Dynamic System Settings to modify the behavior of email processing on your system:
Name |
Purpose |
Services/EmailMaxSize |
Limits the maximum size in KB for an email message. Enter -1 to allow messages of any size. This value is overridden by the Maximum Email Size (KB) field on the Process tab of the Email Listener data instance. |
Services/EmailSuppressUnknownContentError |
If true, suppress any unknown content type errors. |
Services/EmailSuppressMailAPILogging |
If true, suppress any API debugging messages. |
email/timeout |
Connection timeout for SMTP |
email/fetchsize |
Controls size of fetch in bytes if IMAP partial-fetch feature is enabled. Default is 16 KB. Typically does not need to be reset. |
email/partialfetch |
Controls whether to use the IMAP partial-fetch capability. Defaults to true. Typically does not need to be reset. |
email/blockResponse |
If true, all responses are blocked. No response will be sent. |
email/enableTextAttachmentInEmailBody |
If true, text attachments can be embedded in the Email body. |
prconfig/initServices/initEmail/default |
Controls whether the Email service is initialized by default at system startup. The default for the setting is true. In a multinode system, this setting allows you to control whether the Email service is available on individual nodes. |
For a simple example of a Dynamic System Setting that replaces a prconfig.xml file setting, see PDN article How to set prconfig values in a Dynamic System Setting value.
You can collect performance statistics about the resources used by a service in a Comma-Separated-Values (CSV) file, accessed from the Log menu. See Performance tool — Statistics for services in the SERVICES-PAL log.
An email service sample is provided to demonstrate an out-of-the-box self-contained example for application designers to configure. Sample rules are stored in the Pega-LP-Integration RuleSet under the root class PegaSample-Integration derived from the PegaSample class. Please refer to the PDN.