README.txt 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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 -> Configuration -> Development -> Reroute email, and enter an
  24. email address to route all email to.
  25. Tips and Tricks
  26. ---------------
  27. Reroute Email provides configuration variables that you can directly override
  28. in the settings.php file of a site. This is useful for moving sites from live
  29. to test and vice versa.
  30. To use this variable, you add the following line in the settings.php file
  31. for the test environment:
  32. $conf['reroute_email_enable'] = 1;
  33. And for the live site, you set it as follows:
  34. $conf['reroute_email_enable'] = 0;
  35. Configuration and all the settings variables can be overridden in the
  36. settings.php file by copying and pasting the code snippet below and changing
  37. the values:
  38. /**
  39. * Reroute Email module:
  40. *
  41. * To override specific variables and ensure that email rerouting is enabled or
  42. * disabled, change the values below accordingly for your site.
  43. */
  44. // Enable email rerouting.
  45. $conf['reroute_email_enable'] = 1;
  46. // Space, comma, or semicolon-delimited list of email addresses to pass
  47. // through. Every destination email address which is not on this list will be
  48. // rerouted to the first address on the list.
  49. $conf['reroute_email_address'] = "example@example.com";
  50. // Enable inserting a message into the email body when the mail is being
  51. // rerouted.
  52. $conf['reroute_email_enable_message'] = 1;
  53. Test Email Form
  54. ---------------
  55. Reroute Email also provides a convenient form for testing email sending or
  56. rerouting. After enabling the module, a test email form is accessible under:
  57. Admin -> Configuration -> Development -> Reroute email -> Test email form
  58. This form allows sending an email upon submission to the recipients entered in
  59. the fields To, Cc and Bcc, which is very practical for testing if emails are
  60. correctly rerouted to the configured addresses.
  61. Bugs/Features/Patches
  62. ---------------------
  63. If you want to report bugs, feature requests, or submit a patch, please do so
  64. at the project page on the Drupal web site.
  65. http://drupal.org/project/reroute_email
  66. Author
  67. ------
  68. Khalid Baheyeldin (http://baheyeldin.com/khalid and http://2bits.com)
  69. Maintainers
  70. -----------
  71. rfay (http://drupal.org/user/30906)
  72. DYdave (http://drupal.org/user/467284)
  73. If you use this module, find it useful, and want to send the author a thank you
  74. note, then use the Feedback/Contact page at the URL above.
  75. The author can also be contacted for paid customizations of this and other
  76. modules.