Page 1 of 1

smtp.gmail.com

PostPosted: Wed Jun 25, 2008 10:56 am
by Todor
I installed webauction and everything works great! The only problem is, when it sends new users registration confirmation emails, the emails are blocked as spam because they are being sent through the php of my host. I found free .php code online that would send my mail through smtp.gmail.com called PHP Mailer , but i could not integrate it into Xataface. could anyone help?[/url]

PostPosted: Fri Jun 27, 2008 9:43 pm
by moonisharsh
Hey,there is nothing wrong with you,but the receiver`s mailbox.

PostPosted: Mon Jun 30, 2008 9:14 am
by shannah
This wouldn't be difficult to do, if you are comfortable with PHP. You need to create your own mail function (say my_mail()) that takes the same parameters as the php mail() function. Then go through the include/functions.inc.php file and replace all calls of the "mail()" function to "my_mail()".

-Steve

thank you

PostPosted: Mon Jun 30, 2008 10:25 am
by Todor
thanks!
I was looking for the place where the mail() function is written, and now i know.