Merge pull request #23764 from eileenmcnaughton/activity_update_mutli
[civicrm-core.git] / CRM / Contribute / WorkflowMessage / ContributionOfflineReceipt.php
CommitLineData
66c8a610
EM
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
6b892bd2
EM
12use Civi\WorkflowMessage\GenericWorkflowMessage;
13
66c8a610
EM
14/**
15 * Receipt sent when confirming a back office contribution.
16 *
17 * @support template-only
6b892bd2 18 *
66c8a610
EM
19 * @see CRM_Contribute_Form_AdditionalInfo::emailReceipt
20 */
6b892bd2 21class CRM_Contribute_WorkflowMessage_ContributionOfflineReceipt extends GenericWorkflowMessage {
66c8a610
EM
22 use CRM_Contribute_WorkflowMessage_ContributionTrait;
23 public const WORKFLOW = 'contribution_offline_receipt';
24
25}