Merge pull request #22545 from eileenmcnaughton/build
[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
12/**
13 * Receipt sent when confirming a back office contribution.
14 *
15 * @support template-only
16 * @see CRM_Contribute_Form_AdditionalInfo::emailReceipt
17 */
18class CRM_Contribute_WorkflowMessage_ContributionOfflineReceipt extends \Civi\WorkflowMessage\GenericWorkflowMessage {
19 use CRM_Contribute_WorkflowMessage_ContributionTrait;
20 public const WORKFLOW = 'contribution_offline_receipt';
21
22}