You are here

postmark.module in Postmark 8

Same filename and directory in other branches
  1. 6 postmark.module
  2. 7 postmark.module

Tntegrate the third party Postmark mail service with Drupal.

File

postmark.module
View 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

Namesort descending Description
postmark_mail Implements hook_mail().