| 1 |
$Id$
|
| 2 |
|
| 3 |
mail.module
|
| 4 |
README.txt
|
| 5 |
|
| 6 |
Description
|
| 7 |
------------
|
| 8 |
|
| 9 |
This module is for sending emails to registered users. It includes a
|
| 10 |
custom "mail" content type, but can also be used to add emailing to any
|
| 11 |
existing content type. See INSTALL file for installation.
|
| 12 |
|
| 13 |
Usage
|
| 14 |
------------
|
| 15 |
|
| 16 |
After installing the module, enable "Send emails to users" permission
|
| 17 |
for roles you wish to be able to send emails. Then to send an email,
|
| 18 |
select create content > mail.
|
| 19 |
|
| 20 |
To enable emailing for mail or other content types, go to the
|
| 21 |
configuration page for the particular content type, see
|
| 22 |
|
| 23 |
administer > content > configure > content types
|
| 24 |
|
| 25 |
or, in url format,
|
| 26 |
|
| 27 |
admin/node/configure/settings
|
| 28 |
|
| 29 |
and select "enabled" for the Email option.
|
| 30 |
|
| 31 |
Then to send an email, select create content > mail
|
| 32 |
(or another content type with emailing enabled).
|
| 33 |
|
| 34 |
Accepting Emails
|
| 35 |
------------
|
| 36 |
|
| 37 |
This module adds a new field to the user registration and editing
|
| 38 |
forms through which users can opt in to receiving site emails. Emails
|
| 39 |
send from non-admin accounts will go out only to users who have opted
|
| 40 |
to receive emails. However, mails sent from user accounts with the
|
| 41 |
"administer users" permission will go out to all users, whether or not
|
| 42 |
they have opted in.
|
| 43 |
|
| 44 |
Settings
|
| 45 |
------------
|
| 46 |
|
| 47 |
Use the mail module settings page to set default sending options.
|
| 48 |
These include format (plain text or HTML), priority, character set,
|
| 49 |
and receipt request. These options can be overridden for a particular
|
| 50 |
mail post on the node editing page.
|
| 51 |
|
| 52 |
Attachments
|
| 53 |
------------
|
| 54 |
|
| 55 |
Mail module is integrated with the core upload module. To enable
|
| 56 |
sending of uploads, enable the upload module and ensure that
|
| 57 |
uploads are enabled for mail posts. Any files uploaded with a
|
| 58 |
mail post will then be sent as attachments.
|
| 59 |
|
| 60 |
Bug Reporting
|
| 61 |
-------------
|
| 62 |
|
| 63 |
http://drupal.org/project/issues/mail
|