ReplyTo property

EmailReportButton.ReplyTo — Text

Represents the Reply-To field of an email sent through an email report button. When an email is sent without a Reply-To field, the recipient is asked to reply to the address indicated by the Sender field (which can be set through the Sender property). The Reply-To field may be used to change this behavior, enabling email to be sent from one address while replies are directed to the address indicated by the Reply-To field.

The default sender uses the calcapp.net domain. Using a calcapp.net sender increases the odds that an email sent through Calcapp is successfully delivered and is not classified as spam. Consider using this property instead of the Sender property to direct replies to your reports.

Learn more about this topic at our blog.

Example

IF(Inquiry = "I need help", "support@example.com", "info@example.com")IF(Inquiry = "I need help"; "support@example.com"; "info@example.com")

Sets the Reply-To field of an email sent through an email report button to "support@example.com" if "I need help" has been selected from the text drop-down field Inquiry. Otherwise, the Reply-To field is set to "info@example.com".