Downloads

Download tar.gz 24.39 KB
MD5: 4b7d92223b3bef63274fc06ed02ade36
SHA-1: 3bdb046f8bf2a6998b88c01b265cd81dabe3480d
SHA-256: 61f82a0ebde7949ee5b72e72d944489ca2b641b97441b585c2cdd4339070583f
Download zip 28.03 KB
MD5: a8bcf16cd501333c665a74cd93cbff5f
SHA-1: 8819990af5c5b8852f90d6b1119fc19a6001fc19
SHA-256: e0379b1b0b0840e1a491fab48aedfbe496114ebdee4bc41c79e109b6627621b8

Release notes

Fixes:
#1237924: Increase module weight to run format() function after all hook_mail_alter
#1241300: error on admin/config/system/mailsystem
#1275194: Correct the foreach loop nesting error in mailsystem_get_classes() function.

Mail System

Provides an Administrative UI and Developers API for safely updating the mail_system configuration variable.

The 6.x branch also provides a Drupal-6 backport of the Drupal-7 mail system.

(New) Requirement

Administrative UI

The administrative interface is at admin/settings/mailsystem. A screenshot is available.

Used by:

Developers API

A module example with a MailSystemInterface implementation called ExampleMailSystem should add the following in its example.install file:

/**
 * Implements hook_enable().
 */
function example_enable() {
  mailsystem_set(array('example' => 'ExampleMailSystem'));
}
/**
 * Implements hook_disable().
 */
function example_disable() {
  mailsystem_clear(array('example' => 'ExampleMailSystem'));
}

The above settings allow mail sent by example to use ExampleMailSystem. To make ExampleMailSystem the site-wide default for sending mail:

mailsystem_set(array(mailsystem_default_id() => 'ExampleMailSystem'));

To restore the default mail system:

mailsystem_set(array(mailsystem_default_id() => mailsystem_default_value()));

Or simply:

mailsystem_set(mailsystem_defaults());

If module example relies on dependency foo and its FooMailSystem class, then the example.install code should like like this:

/**
 * Implements hook_enable().
 */
function example_enable() {
  mailsystem_set(array('example' => 'FooMailSystem'));
}
/**
 * Implements hook_disable().
 */
function example_disable() {
  mailsystem_clear(array('example' => ''));
}

If module example only wants to use FooMailSystem when sending emails with a key of examail, then the example.install code should look like this:

/**
 * Implements hook_enable().
 */
function example_enable() {
  mailsystem_set(array('example_examail' => 'FooMailSystem'));
}
/**
 * Implements hook_disable().
 */
function example_disable() {
  mailsystem_clear(array('example_examail' => ''));
}

(New in 2.x branch)

To change the site-wide defaults to use the FooMailSystem for formatting messages and the BarMailSystem for sending them:

mailsystem_set(
  array(
    mailsystem_default_id() => array(
      'format' => 'FooMailSystem',
      'mail' => 'BarMailSystem',
    ),
  )
);

To change the site-wide defaults to use the FooMailSystem for sending messages, while continuing to use the current system for formatting them:

mailsystem_set(
  array(
    mailsystem_default_id() => array(
      'mail' => 'FooMailsystem',
    ),
  )
);

References

drupal_mail_system(http://api.drupal.org/api/drupal/includes--mail.inc/function/drupal_mail_system/7) API documentation:

api.drupal.org/api/drupal/includes--mail.inc/function/drupal_mail_system/7

MailSystemInterface API documentation:

http://api.drupal.org/api/drupal/includes--mail.inc/interface/MailSystemInterface/7

Creating HTML formatted mails in Drupal 7

drupal.org/node/900794

Created by: pillarsdotnet
Created on: 10 Sep 2011 at 18:29 UTC
Last updated: 10 Sep 2011 at 18:31 UTC
Bug fixes
Unsupported

Other releases