Merge pull request #23764 from eileenmcnaughton/activity_update_mutli
[civicrm-core.git] / CRM / Contribute / WorkflowMessage / ContributionOnlineReceipt.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
12use Civi\WorkflowMessage\GenericWorkflowMessage;
13
14/**
15 * Receipt sent when confirming contribution add payment.
16 *
17 * Add payment, complete order and the front end contribution form
18 * result in an email send using this, unless an event is involved.
19 * In addition the api contribution.sendconfirmation and the search task
20 * call this.
21 *
22 * @support template-only
23 * @see CRM_Contribute_BAO_ContributionPage::sendMail
24 */
25class CRM_Contribute_WorkflowMessage_ContributionOnlineReceipt extends GenericWorkflowMessage {
26 use CRM_Contribute_WorkflowMessage_ContributionTrait;
27 public const WORKFLOW = 'contribution_online_receipt';
28
29}