Current Path : /web/htdocs/www.entinoprofit.org/home/lists/admin/
Upload File :
Current File : /web/htdocs/www.entinoprofit.org/home/lists/admin/EmailSender.php

<?php
/**
 * A plugin should implement this interface if it wants to be responsible
 * for sending emails.
 */
interface EmailSender
{
    /**
     * Send an email.
     *
     * @param PHPlistMailer $phplistmailer mailer instance
     * @param string        $header        the message http headers
     * @param string        $body          the message body
     *
     * @return bool success/failure
     */
    public function send(PHPlistMailer $mailer, $header, $body);
}