Re: SMTP Local development to Send email in PHP; Windows Platform/ XP with no IIS

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



2010/1/15  <vikash.iitb@xxxxxxxxx>:
> You can install any smtp server on your windows machine and the mail() will
> work with default settings. You can check this out:
> http://www.softstack.com/freesmtp.html
>
> Thanks,
>
> Vikash Kumar
> http://vika.sh
>
>
> On Fri, Jan 15, 2010 at 5:30 PM, Gaurav Kumar
> <kumargauravjukebox@xxxxxxxxx>wrote:
>
>> Sorry Kim, don't want to use phpmailer script or manually setting user
>> accounts u/p in the script.
>>
>>
>>
>> On Fri, Jan 15, 2010 at 5:23 PM, Kim Madsen <php.net@xxxxxxx> wrote:
>>
>> > Hi Gaurav
>> >
>> > Gaurav Kumar wrote on 15/01/2010 09:54:
>> >
>> >
>> >  NO SMTP
>> >>
>> >> Any trusted SMTP software to install on local development machine and
>> how
>> >> to
>> >> set it up with php to send an email?
>> >>
>> >> Also just providing the SMTP server details in php.ini will not work for
>> >> me
>> >> as this requires authentication/credentials etc..
>> >>
>> >
>> > Get PHPmailer and make a gmail account that you connect to and mail
>> > through.
>> >
>> > --
>> > Kind regards
>> > Kim Emax - masterminds.dk
>> >
>>
>

You only need a local SMTP server if you want to hold and relay mail.

If you want to send mail directly to the recipients SMTP server you
can do that with standard PHP.

getmxrr() is your friend here.

You provide it with the domain of the recipient and you get back the
SMTP server(s) associated with that domain.

Now, you can send the message to THEIR smtp server ...

ini_set('SMTP', xxxx);

where xxxx is one of the servers returned from getmxrr().

No authentication required.




-- 
-----
Richard Quadling
"Standing on the shoulders of some very clever giants!"
EE : http://www.experts-exchange.com/M_248814.html
Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731
ZOPA : http://uk.zopa.com/member/RQuadling

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux