You can directly integrate Zend’s mail module with Aritic Mail to use our SMTP servers for outgoing messages.
12345678910111213141516171819202122232425
<?phprequire_once'$HOME/ariticmailid/Zend/library/Zend/Mail.php';require_once'/$HOME/ariticmailid/Zend/library/Zend/Mail/Transport/Smtp.php';$smtpServer='mail.ariticmail.com';$username=$password=$config=array('ssl'=>'tls','port'=>'25','auth'=>'login','username'=>$username,'password'=>$password);$transport=newZend_Mail_Transport_Smtp($smtpServer,$config);$mail=newZend_Mail();$mail->setFrom('sendeexampexample@example.com','Some Sender');$mail->addTo('email@example.com','Some Recipient');$mail->setSubject('Test Subject');$mail->setBodyText('This is the text of the mail using Zend.');$mail->send($transport);?>
If you prefer a modular installation, then check out Jurian Sluiman’s SlmMail project at GitHub.