Posted by noone on 11/02/04 11:41
julian_m wrote:
> I'm using phpmailer class (http://phpmailer.sourceforge.net) to send
> mails from my site, but i can't figure out why those mails are seen as
> spam by yahoo and hotmail. Gmail seems to look them better and allows
> them to stay in "inbox" folder.
> Are there any thing I can do about that?
>
> sdos - jm
>
mine works... how do you have your mail_inc.php configured?
class my_phpmailer extends phpmailer {
// Set default variables for all new objects
var $From = "myaddress@mydomain.com";
var $FromName = "My Name";
var $Host = "smtp.myISP.com";
var $Port = 25;
var $Mailer = "smtp"; // Alternative to IsSMTP()
var $SMTPAuth = true;
var $Username = "myispusername";
I require the password at email compose time to reduce the possibility
of my site being used to forge emails to others.. not entirely secure
but much better....
[Back to original message]
|