Epilogue property

EmailReportButton.Epilogue — Text

Represents the text that appears after field values. If the field values are part of an attached file, the text of this property also appears in the attached file. If the field values are part of the email body itself, this also applies to the text of this property.

The Prologue property represents the text that appears before field values. The Body property represents the body text of the email.

Associate a formula with this property to determine this text using values entered in your app and logic that derives from these values. Use & to join various text strings together and the NEWLINE function to produce line breaks, enabling this text to consist of multiple paragraphs.

Refer to the documentation for the Body property for a complex example on how to produce a text string incorporating field values using a formula.

Example

IF(CriticalTemperature > 86, "Look closely at the temperature readings above!")IF(CriticalTemperature > 86; "Look closely at the temperature readings above!")

Sets the text that appears after field values to "Look closely at the temperature readings above!" only if the value of the CriticalTemperature field is greater than 86.