Downloads

Download tar.gz 12.98 KB
MD5: d238f2216498fdd7b9f55b044b2eb254
SHA-1: a84b4be48b3745cdfa683805fbee98816b745625
SHA-256: aaad674fef788bfa83eab73b54fc247d93cec8d50e8159906f93eba3ad950ad4
Download zip 16.06 KB
MD5: 09411af928b2c2ee681436efbfbf0bc5
SHA-1: 1e064126e8b7f7a18d546628b0ade1fececbb7d7
SHA-256: b57ebb2d7dc9add994cf6791bfb9830523d4ed0096795e1b940b5194c8329b65

Release notes

Fixes
#1122432: Error in backport of D7 DefaultMailSystem

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

The 6.x-1.x branch also provides a Drupal-6 backport of the Drupal-7 mail system. For more information, see Creating HTML formatted emails in Drupal 7.

Administrative UI

The administrative interface is at admin/config/system/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' => ''));
}

References

drupal_mail_system() API documentation:

http://api.drupal.org/api/drupal/includes--mail.inc/function/drupal_mail...

MailSystemInterface API documentation:

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

Creating HTML formatted mails in Drupal 7

http://drupal.org/node/900794

Created by: pillarsdotnet
Created on: 10 Apr 2011 at 10:34 UTC
Last updated: 10 Apr 2011 at 10:36 UTC
Bug fixes
Unsupported

Other releases