]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blob - vendor/pear/mail/Mail/null.php
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / vendor / pear / mail / Mail / null.php
1 <?php
2 /**
3  * Null implementation of the PEAR Mail interface
4  *
5  * PHP version 5
6  *
7  * LICENSE:
8  *
9  * Copyright (c) 2010-2017, Phil Kernick
10  * All rights reserved.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  *
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  *
19  * 2. Redistributions in binary form must reproduce the above copyright
20  *    notice, this list of conditions and the following disclaimer in the
21  *    documentation and/or other materials provided with the distribution.
22  *
23  * 3. Neither the name of the copyright holder nor the names of its
24  *    contributors may be used to endorse or promote products derived from
25  *    this software without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31  * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38  *
39  * @category    Mail
40  * @package     Mail
41  * @author      Phil Kernick <philk@rotfl.com.au>
42  * @copyright   2010-2017 Phil Kernick
43  * @license     http://opensource.org/licenses/BSD-3-Clause New BSD License
44  * @version     CVS: $Id$
45  * @link        http://pear.php.net/package/Mail/
46  */
47
48 /**
49  * Null implementation of the PEAR Mail:: interface.
50  * @access public
51  * @package Mail
52  * @version $Revision$
53  */
54 class Mail_null extends Mail {
55
56     /**
57      * Implements Mail_null::send() function. Silently discards all
58      * mail.
59      *
60      * @param mixed $recipients Either a comma-seperated list of recipients
61      *              (RFC822 compliant), or an array of recipients,
62      *              each RFC822 valid. This may contain recipients not
63      *              specified in the headers, for Bcc:, resending
64      *              messages, etc.
65      *
66      * @param array $headers The array of headers to send with the mail, in an
67      *              associative array, where the array key is the
68      *              header name (ie, 'Subject'), and the array value
69      *              is the header value (ie, 'test'). The header
70      *              produced from those values would be 'Subject:
71      *              test'.
72      *
73      * @param string $body The full text of the message body, including any
74      *               Mime parts, etc.
75      *
76      * @return mixed Returns true on success, or a PEAR_Error
77      *               containing a descriptive error message on
78      *               failure.
79      */
80     public function send($recipients, $headers, $body)
81     {
82         return true;
83     }
84
85 }