Skip to content
Snippets Groups Projects
Unverified Commit 7561e965 authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #466 from lcdservices/patch-1

CRM-21020 add additional params and example
parents 4e267d59 554eb99e
No related branches found
No related tags found
No related merge requests found
......@@ -15,4 +15,21 @@ tokenizing it.
## Details
- $content - fields include: html, text, subject
\ No newline at end of file
- $content - fields include: html, text, subject, groupName, valueName, messageTemplateID
## Example
```php
/**
* Implement hook_civicrm_alterMailContent
*
* Replace invoice template with custom content from file
*/
function mail_civicrm_alterMailContent(&$content) {
if (CRM_Utils_Array::value('valueName', $content) == 'contribution_invoice_receipt') {
$path = CRM_Core_Resources::singleton()->getPath('org.myorg.invoice');
$html = file_get_contents($path.'/msg/contribution_invoice_receipt.html.tpl');
$content['html'] = $html;
}
}
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment