Re: [PHP] Mail Function In PHP

2010-03-10 Thread Michael Kubler
Having worked at a decent sized, respectable ISP with 100,000+ customers sending email via Iron Ports (email scanners), even they would get put on a blacklist on a monthly basis. Hell it wouldn't surprise me if Gmail's SMTP servers got put on a black list at some point. There's seemingly hundred

Re: [PHP] Mail Function In PHP

2010-03-08 Thread james . stojan
Date: Mon, 8 Mar 2010 10:21:53 To: Kannan Cc: Subject: Re: [PHP] Mail Function In PHP On 7 March 2010 04:54, Kannan wrote: > Hello >           I am creating a application for our college using the > php.In that i want to send mail to all who are all the list. > > For that i am just

Re: [PHP] Mail Function In PHP

2010-03-08 Thread John Black
On 03/08/2010 10:45 PM, John Black wrote: You can use SPF, DomainKeys plus valid DNS information. I have setup SPF records for my domains. If you attempt to send E-Mail as if it was sent from my server then any server doing SPF record checking will not accept or simply drop your message. I have n

Re: [PHP] Mail Function In PHP

2010-03-08 Thread John Black
On 03/08/2010 06:18 PM, Richard Quadling wrote: On 8 March 2010 13:06, Teus Benschop wrote: On Mon, 2010-03-08 at 10:21 +, Richard Quadling wrote: Contrary to popular belief, to send an email you do not need to have your own SMTP server. All you need to know is the SMTP server responsible

Re: [PHP] Mail Function In PHP

2010-03-08 Thread Teus Benschop
On Mon, 2010-03-08 at 17:18 +, Richard Quadling wrote: > So, say I did go and setup a local SMTP relay, how would I make it > known that it was a "real" smtp server and not just some script > pushing spam? > > Once a domain or ip address was black listed, it was quite a process to get it unl

Re: [PHP] Mail Function In PHP

2010-03-08 Thread Marc Trudel
If you control your DNS server setup and such, DKIM and authentication technologies alikes (http://en.wikipedia.org/wiki/DomainKeys) are the way to go. Also, make sure the reverse DNS lookup is pointing to the right place, i.e. that the SMTP server domain name translates to an IP that translates b

Re: [PHP] Mail Function In PHP

2010-03-08 Thread Ashley Sheridan
On Mon, 2010-03-08 at 17:18 +, Richard Quadling wrote: > On 8 March 2010 13:06, Teus Benschop wrote: > > On Mon, 2010-03-08 at 10:21 +, Richard Quadling wrote: > >> Contrary to popular belief, to send an email you do not need to have > >> your own SMTP server. All you need to know is the

Re: [PHP] Mail Function In PHP

2010-03-08 Thread Richard Quadling
On 8 March 2010 13:06, Teus Benschop wrote: > On Mon, 2010-03-08 at 10:21 +, Richard Quadling wrote: >> Contrary to popular belief, to send an email you do not need to have >> your own SMTP server. All you need to know is the SMTP server >> responsible for your recipients email. > [...] > > Wh

Re: [PHP] Mail Function In PHP

2010-03-08 Thread Richard Quadling
On 8 March 2010 13:06, Teus Benschop wrote: > > On Mon, 2010-03-08 at 10:21 +, Richard Quadling wrote: > > Contrary to popular belief, to send an email you do not need to have > > your own SMTP server. All you need to know is the SMTP server > > responsible for your recipients email. > [...] >

Re: [PHP] Mail Function In PHP

2010-03-08 Thread Teus Benschop
On Mon, 2010-03-08 at 10:21 +, Richard Quadling wrote: > Contrary to popular belief, to send an email you do not need to have > your own SMTP server. All you need to know is the SMTP server > responsible for your recipients email. [...] While the above is true, there is also another thing that

Re: [PHP] Mail Function In PHP

2010-03-08 Thread Richard Quadling
On 7 March 2010 04:54, Kannan wrote: > Hello >           I am creating a application for our college using the > php.In that i want to send mail to all who are all the list. > > For that i am just simply use the mail function in php without > configuring any mail system in the system.But the mail

Re: [PHP] Mail Function In PHP

2010-03-06 Thread Kevin Kinsey
Kannan wrote: Hello I am creating a application for our college using the php.In that i want to send mail to all who are all the list. For that i am just simply use the mail function in php without configuring any mail system in the system.But the mail didn't send. For sending the mai

Re: [PHP] Mail Function In PHP

2010-03-06 Thread Devendra Jadhav
You need SMTP Server for this.. Read bellow link to know more how to configure SMTP Server in PHP http://email.about.com/od/emailprogrammingtips/qt/Configure_PHP_to_Use_a_Remote_SMTP_Server_for_Sending_Mail.htm