| Current Path : /home/rtorresani/www/vendor/laminas/laminas-mail/src/Transport/ |
| 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);
}