Due to the amount of requests emailed to me for working source code I have now posted the modified PHPMailer I use in my own projects. Click here to download the library. Here’s an example of how to use the code:
require_once(’/phpgmailer/class.phpgmailer.php’);
$mail = new PHPGMailer();
$mail->Username = ‘user@domain.com’;
$mail->Password = ‘password’;
$mail->From = ‘user@domain.com’;
$mail->FromName = ‘User Name’;
$mail->Subject [...]
Entries Tagged as 'phpgmailer'
UPDATE: Send email with PHP and GMail hosted for your domain
October 13th, 2006 81 Comments
Tags:
Send email with PHP and GMail hosted for your domain
March 27th, 2006 22 Comments
I’ve been using Linux ever since I became a CS major at Georgia Tech five years ago. I’ve compiled my own kernels, maintained Apache and MySQL, and written custom IPTable’s; I’ve even setup printing AND scanning with modern hardware. But not once have I ever come close to setting up a working mail server.
On second [...]
Tags: