• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Mail/H03-May-2022-2,4951,012

tests/H03-May-2022-293236

LICENSEH A D23-Jun-20201.5 KiB3024

Mail.phpH A D23-Jun-20209.6 KiB268102

README.rstH A D23-Jun-20201.1 KiB5441

composer.jsonH A D23-Jun-20201.1 KiB4746

package.xmlH A D23-Jun-20203.1 KiB8078

README.rst

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