postmark.module in Postmark 8
Same filename and directory in other branches
Tntegrate the third party Postmark mail service with Drupal.
File
postmark.moduleView source
<?php
/**
* @file
* Tntegrate the third party Postmark mail service with Drupal.
*/
/**
* Implements hook_mail().
*/
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.');
}
Functions
Name | Description |
---|---|
postmark_mail | Implements hook_mail(). |