smtp.gmail.com
Archived from the Web Auction Discussion forum.
Todor — Wed Jun 25, 2008 10:56 am
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]
moonisharsh — Fri Jun 27, 2008 9:43 pm
Hey,there is nothing wrong with you,but the receiver`s mailbox.
shannah — Mon Jun 30, 2008 9:14 am
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
Todor — Mon Jun 30, 2008 10:25 am
thanks!
I was looking for the place where the mail() function is written, and now i know.