Your IP : 216.73.217.100


Current Path : /home/rtorresani/www/vendor/laminas/laminas-mail/src/Transport/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-mail/src/Transport/TransportInterface.php

<?php

namespace Laminas\Mail\Transport;

use Laminas\Mail;

/**
 * Interface for mail transports
 */
interface TransportInterface
{
    /**
     * Send a mail message
     *
     * @return void
     */
    public function send(Mail\Message $message);
}