function postmark_mail in Postmark 8
Same name and namespace in other branches
- 6 postmark.admin.inc \postmark_mail()
- 7 postmark.admin.inc \postmark_mail()
Implements hook_mail().
File
- ./
postmark.module, line 11 - Tntegrate the third party Postmark mail service with Drupal.
Code
function postmark_mail($key, &$message, $params) {
$message['subject'] = t('Postmark Test Run Email');
$message['body'][] = t('Your site is properly configured to send emails using the Postmark library.');
}