You are here

README.txt in Reroute Email 5

Same filename and directory in other branches
  1. 8 README.txt
  2. 6 README.txt
  3. 7 README.txt
  4. 2.x README.txt
Copyright 2007 Khalid Baheyeldin and http://2bits.com

Description
-----------
This module intercepts all outgoing emails from a Drupal site and
reroutes them to a predefined configurable email address.

This is useful in case where you do not want email sent from a Drupal
site to reach the users. For example, if you copy a live site to a test
site for the purpose of development, and you do not want any email sent
to real users of the original site. Or you want to check the emails sent
for uniform formatting, footers, ...etc.

This is also a good demonstration of what hook_mail_alter(), available in
Drupal 5.x and later, can do.

Installation
------------
To install this module, do the following:

1. Extract the tar ball that you downloaded from Drupal.org.

2. Upload the entire directory and all its contents to your
   modules directory.

Configuration
-------------
To enable this module do the following:

1. Go to Admin -> Modules, and enable reroute email.

2. Go to Admin -> Settings -> Reroute email, and enter an email address
   to route all email to.

Tips and Tricks
---------------
Configuration and all the settings variables can be overridden in the
settings.php file by copying and pasting the code snippet below and changing
the values:

/**
 * Reroute Email module:
 *
 * To override specific variables and ensure that email rerouting is enabled or
 * disabled, change the values below accordingly for your site.
 */
// The email address to reroute all emails from the site to.
$conf['reroute_email_address'] = "example@example.com";


Bugs/Features/Patches:
----------------------
If you want to report bugs, feature requests, or submit a patch, please do so
at the project page on the Drupal web site.
http://drupal.org/project/reroute_email

Author
------
Khalid Baheyeldin (http://baheyeldin.com/khalid and http://2bits.com)

If you use this module, find it useful, and want to send the author
a thank you note, then use the Feedback/Contact page at the URL above.

The author can also be contacted for paid customizations of this
and other modules.

File

README.txt
View source
  1. Copyright 2007 Khalid Baheyeldin and http://2bits.com
  2. Description
  3. -----------
  4. This module intercepts all outgoing emails from a Drupal site and
  5. reroutes them to a predefined configurable email address.
  6. This is useful in case where you do not want email sent from a Drupal
  7. site to reach the users. For example, if you copy a live site to a test
  8. site for the purpose of development, and you do not want any email sent
  9. to real users of the original site. Or you want to check the emails sent
  10. for uniform formatting, footers, ...etc.
  11. This is also a good demonstration of what hook_mail_alter(), available in
  12. Drupal 5.x and later, can do.
  13. Installation
  14. ------------
  15. To install this module, do the following:
  16. 1. Extract the tar ball that you downloaded from Drupal.org.
  17. 2. Upload the entire directory and all its contents to your
  18. modules directory.
  19. Configuration
  20. -------------
  21. To enable this module do the following:
  22. 1. Go to Admin -> Modules, and enable reroute email.
  23. 2. Go to Admin -> Settings -> Reroute email, and enter an email address
  24. to route all email to.
  25. Tips and Tricks
  26. ---------------
  27. Configuration and all the settings variables can be overridden in the
  28. settings.php file by copying and pasting the code snippet below and changing
  29. the values:
  30. /**
  31. * Reroute Email module:
  32. *
  33. * To override specific variables and ensure that email rerouting is enabled or
  34. * disabled, change the values below accordingly for your site.
  35. */
  36. // The email address to reroute all emails from the site to.
  37. $conf['reroute_email_address'] = "example@example.com";
  38. Bugs/Features/Patches:
  39. ----------------------
  40. If you want to report bugs, feature requests, or submit a patch, please do so
  41. at the project page on the Drupal web site.
  42. http://drupal.org/project/reroute_email
  43. Author
  44. ------
  45. Khalid Baheyeldin (http://baheyeldin.com/khalid and http://2bits.com)
  46. If you use this module, find it useful, and want to send the author
  47. a thank you note, then use the Feedback/Contact page at the URL above.
  48. The author can also be contacted for paid customizations of this
  49. and other modules.