email_example.module

Version 1.4 (checked in on 2010/03/03 at 15:48:59 by rfay)

Example of how to use Drupal's mail API.

This example module provides two different examples of the Drupal email API.

  • defines a simple contact form and shows how to use drupal_mail() to send an e-mail (defined in hook_mail()) when the form is submitted.
  • shows how modules can alter emails defined by other Drupal modules or Core using hook_mail_alter by attaching a custom signature before they are sent.

Functions & methods

NameDescription
email_example_formThe contact form.
email_example_form_submitForm submission logic for the contact form.
email_example_form_validateForm validation logic for the contact form.
email_example_mailImplement hook_mail().
email_example_mail_alterImplement hook_mail_alter().
email_example_mail_sendSend an e-mail.
email_example_menuImplement hook_menu().