Merge pull request #23764 from eileenmcnaughton/activity_update_mutli
[civicrm-core.git] / CRM / Contribute / WorkflowMessage / ContributionOfflineReceipt.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 use Civi\WorkflowMessage\GenericWorkflowMessage;
13
14 /**
15 * Receipt sent when confirming a back office contribution.
16 *
17 * @support template-only
18 *
19 * @see CRM_Contribute_Form_AdditionalInfo::emailReceipt
20 */
21 class CRM_Contribute_WorkflowMessage_ContributionOfflineReceipt extends GenericWorkflowMessage {
22 use CRM_Contribute_WorkflowMessage_ContributionTrait;
23 public const WORKFLOW = 'contribution_offline_receipt';
24
25 }