You are here

README.txt in Multiple E-mail Addresses 6

Same filename and directory in other branches
  1. 5 README.txt
  2. 7 README.txt
  3. 2.x README.txt
Module: Multiple E-mail Addresses
Original Author: Joshua Benner <joshbenner@gmail.com>
Sponsor of Drupal 5 version: Rock River Star (www.rockriverstar.com) -- My employer

Drupal 6 version maintainer: Shawn DeArmond (http://drupal.org/user/77785)

The Multiple E-mail module allows users to register additional emails for their
user accounts. Only one e-mail address is considered to be the "primary" email
address, and will continue to behave as normal. Non-primary accounts are
mostly functionally meaningless, except that during user registration any
e-mail address registered to a user cannot be used to create a new account.

Users may select any confirmed e-mail address to become their primary email
address. This means that the user account edit page's e-mail address field will
not change the user's e-mail address. The default settings for the module will
actually hide the e-mail address field on the user account edit page.

Once the module is installed, administration settings are available under Site
Configuration -> Multiple E-mail Settings. The configuration options are rather
straight-forward at this point and are documented in the field descriptions.

The module will create a menu item in the Navigation menu called 'E-Mail
Addresses' that links to the user's e-mail management page.

Hooks
-----
hook_multiple_email_register($email)
  - $email is the e-mail object that has just been registered
  - Use this hook to perform actions when a user registers an e-mail address
    (but isn't confirmed yet)

hook_multiple_email_confirm($email)
  - $email is the e-mail object that has just been registered
  - Use this hook to perform actions when a user confirms an e-mail address

File

README.txt
View source
  1. Module: Multiple E-mail Addresses
  2. Original Author: Joshua Benner
  3. Sponsor of Drupal 5 version: Rock River Star (www.rockriverstar.com) -- My employer
  4. Drupal 6 version maintainer: Shawn DeArmond (http://drupal.org/user/77785)
  5. The Multiple E-mail module allows users to register additional emails for their
  6. user accounts. Only one e-mail address is considered to be the "primary" email
  7. address, and will continue to behave as normal. Non-primary accounts are
  8. mostly functionally meaningless, except that during user registration any
  9. e-mail address registered to a user cannot be used to create a new account.
  10. Users may select any confirmed e-mail address to become their primary email
  11. address. This means that the user account edit page's e-mail address field will
  12. not change the user's e-mail address. The default settings for the module will
  13. actually hide the e-mail address field on the user account edit page.
  14. Once the module is installed, administration settings are available under Site
  15. Configuration -> Multiple E-mail Settings. The configuration options are rather
  16. straight-forward at this point and are documented in the field descriptions.
  17. The module will create a menu item in the Navigation menu called 'E-Mail
  18. Addresses' that links to the user's e-mail management page.
  19. Hooks
  20. -----
  21. hook_multiple_email_register($email)
  22. - $email is the e-mail object that has just been registered
  23. - Use this hook to perform actions when a user registers an e-mail address
  24. (but isn't confirmed yet)
  25. hook_multiple_email_confirm($email)
  26. - $email is the e-mail object that has just been registered
  27. - Use this hook to perform actions when a user confirms an e-mail address