nie potrzebujesz w zasadzie pluginu. Ja robie to w ten sposób ze ściagam biblioteke swift z ich strony.
ja stosuje taki kod:
require_once('lib/swift/swift_init.php');
$transport = Swift_SmtpTransport::newInstance('poczta.o2.pl', 25)
->setUsername('xxx')
->setPassword('yyyl');
//$transport = Swift_MailTransport::newInstance(); lub jeśli wysyłasz z serwera na którym stoi strona
$mailer = Swift_Mailer::newInstance($transport);
$message = Swift_Message::newInstance(''temat)
->setFrom(array('od email' =>'od nazwa')) ->setTo(array($email => 'adres_email')) ->setBody($this->getPartial('global/mail'),'text/html');
$mailer->send($message);