function MailTestCase::testPluggableFramework

Assert that the pluggable mail system is functional.

File

modules/simpletest/tests/mail.test, line 34

Class

MailTestCase
@file Test the Drupal mailing system.

Code

function testPluggableFramework() {
    global $language;
    // Use MailTestCase for sending a message.
    $message = drupal_mail('simpletest', 'mail_test', 'testing@example.com', $language);
    // Assert whether the message was sent through the send function.
    $this->assertEqual(self::$sent_message['to'], 'testing@example.com', 'Pluggable mail system is extendable.');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.