1****
2Mail
3****
4Class that provides multiple interfaces for sending emails.
5
6PEAR's Mail package defines an interface for implementing mailers under the
7PEAR hierarchy.
8It also provides supporting functions useful to multiple mailer backends.
9
10Currently supported backends include:
11
12- PHP's native ``mail()`` function
13- sendmail
14- SMTP
15
16This package also provides a `RFC 822`__ email address list validation utility class.
17
18Use Mail in combination with `Mail_Mime`__ to send HTML emails or emails with
19attachments - have a look at the example__.
20
21__ https://tools.ietf.org/html/rfc822
22__ http://pear.php.net/package/Mail_Mime
23__ http://pear.php.net/manual/en/package.mail.mail-mime.example.php
24
25============
26Installation
27============
28
29PEAR
30====
31::
32
33    $ pear install mail
34
35Composer
36========
37::
38
39    $ composer require pear/mail
40
41=====
42Links
43=====
44Homepage
45  http://pear.php.net/package/Mail
46Source code
47  https://github.com/pear/Mail
48Issue tracker
49  http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Mail
50Unit test status
51  https://travis-ci.org/pear/Mail
52Packagist
53  https://packagist.org/packages/pear/mail
54