Re: [PHP] PHP SMTP Mailers

2010-03-22 Thread King Coffee
Thanks, I try it and had not problems! King -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP SMTP Mailers

2010-03-22 Thread Michael A. Peters
King Coffee wrote: Hi, I'm executing a third-parity standard PHP application on a Windows IIS 7 shared hosting server. I need to convert, or use, a SMTP mailer service. I found two SMTP PHP scripts - I think may work. The sourceforge.net PHPMailer project and the pear.php.net (Mail, Net_

[PHP] Re: PHP SMTP Mailers

2010-03-22 Thread Auke van Slooten
King Coffee wrote: Hi, I'm executing a third-parity standard PHP application on a Windows IIS 7 shared hosting server. I need to convert, or use, a SMTP mailer service. I found two SMTP PHP scripts - I think may work. The sourceforge.net PHPMailer project and the pear.php.net (Mail, Net_

Re: [PHP] PHP SMTP Mailers

2010-03-21 Thread King Coffee
Thanks Jan G. B., You got me over the first hump. I'm having programs installing pear on my VISTA localhost... So, I uploaded the Mail folder and Mail.php file to my Shared Hosting ISP. I do not think pear is provided. The Testing is as follows: "; $to = "Bill "; $subject = "PHP Mail Test"; $bo

Re: [PHP] PHP SMTP Mailers

2010-03-20 Thread Jan G.B.
2010/3/20 King Coffee > Hi, > > I'm executing a third-parity standard PHP application on a Windows IIS 7 > shared hosting server. > > I need to convert, or use, a SMTP mailer service. I found two SMTP PHP > scripts - I think may work. > > The sourceforge.net PHPMailer project and the pear.php.ne

[PHP] PHP SMTP Mailers

2010-03-20 Thread King Coffee
Hi, I'm executing a third-parity standard PHP application on a Windows IIS 7 shared hosting server. I need to convert, or use, a SMTP mailer service. I found two SMTP PHP scripts - I think may work. The sourceforge.net PHPMailer project and the pear.php.net (Mail, Net_SMTP) project. Can

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

2010-01-16 Thread Eric Lee
Hi, As I know that php did't setting user name and password. So, just install any smtp server with authenticaton set to "no authentication" Much list IIS smtp server. Eric, Regards, On 1/16/10, Andy Shellam wrote: > > Hi, > > > > > Also http://www.softstack.com/freesmtp.html which vikash men

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

2010-01-15 Thread Andy Shellam
Hi, > > Also http://www.softstack.com/freesmtp.html which vikash mentioned works > through outlook settings. > > Anyways the below will help- > > http://php.net/manual/en/ref.mail.php > > http://glob.com.au/sendmail/ Personally, I always found hMailServer to be perfectly reliable as a relay

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

2010-01-15 Thread Gaurav Kumar
Hi Richard, The problem is that if I am using any open source software or any other pre-built software then I will not be able to manage through ini_set. Also http://www.softstack.com/freesmtp.html which vikash mentioned works through outlook settings. Anyways the below will help- http://php.net

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

2010-01-15 Thread Richard Quadling
2010/1/15 : > 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 > wrote: > >> S

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

2010-01-15 Thread vikash . iitb
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 wrote: > Sorry Kim, don't want to use phpmail

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

2010-01-15 Thread Gaurav Kumar
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 wrote: > Hi Gaurav > > Gaurav Kumar wrote on 15/01/2010 09:54: > > > NO SMTP >> >> Any trusted SMTP software to install on local development machine a

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

2010-01-15 Thread Kim Madsen
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 e

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

2010-01-15 Thread Gaurav Kumar
Hi All, Ash, Angelo, Any ideas how to send an email in PHP on windows platform/xp on local development machine. System Configuration PHP 5.2 Apache 2 No ISS 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 provid

Re: [PHP] smtp mail question

2009-10-30 Thread John Black
Al wrote: Anyone see a problem if I login into the smtp server with Username different than the Return-Path? It seems to work OK; but, I know from experience using the mail servers that increasingly everything must be exactly right to prevent recipient mail servers from rejecting emails. All

[PHP] smtp mail question

2009-10-30 Thread Al
Anyone see a problem if I login into the smtp server with Username different than the Return-Path? It seems to work OK; but, I know from experience using the mail servers that increasingly everything must be exactly right to prevent recipient mail servers from rejecting emails. So, I started

Re: [PHP] SMTP mail server

2009-04-24 Thread Manuel Lemos
Hello, on 04/24/2009 10:17 PM Ron Piggott said the following: > I am on a shared web site hosting company. They are asking me to edit > my PHP script to specify the SMTP using $aditional_parameters on the URL > below. If this can't be achieved then I need to confirm this. No, AFAIK you cannot c

Re: [PHP] SMTP mail server

2009-04-24 Thread kranthi
ini_set("SMTP", "mail.host.com"); ini_set("smtp_port", 25); http://ca2.php.net/manual/en/mail.configuration.php http://ca2.php.net/manual/en/function.ini-set.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SMTP mail server

2009-04-24 Thread Ron Piggott
I am needing to put this into one specific PHP script. What would the ini_set look like? Ron On Sat, 2009-04-25 at 06:43 +0530, kranthi wrote: > if u cant change the configuration settings of php.ini > use http://pear.php.net/package/Mail > alternatively u can also hav ini_set on top of every

Re: [PHP] SMTP mail server

2009-04-24 Thread Ron Piggott
I am on a shared web site hosting company. They are asking me to edit my PHP script to specify the SMTP using $aditional_parameters on the URL below. If this can't be achieved then I need to confirm this. Ron On Fri, 2009-04-24 at 20:04 -0500, Adam Williams wrote: > > Ron Piggott wrote: > >

Re: [PHP] SMTP mail server

2009-04-24 Thread kranthi
if u cant change the configuration settings of php.ini use http://pear.php.net/package/Mail alternatively u can also hav ini_set on top of every page. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SMTP mail server

2009-04-24 Thread Adam Williams
Ron Piggott wrote: How do I specify an actual SMTP server? (Like mail.host.com) This is what I have so far: mail($email, $subject, $message, $headers); I was to http://ca2.php.net/manual/en/function.mail.php and saw this syntax: mail ( string $to , string $subject , string $message [, stri

[PHP] SMTP mail server

2009-04-24 Thread Ron Piggott
How do I specify an actual SMTP server? (Like mail.host.com) This is what I have so far: mail($email, $subject, $message, $headers); I was to http://ca2.php.net/manual/en/function.mail.php and saw this syntax: mail ( string $to , string $subject , string $message [, string $additional_headers

Re: [PHP] SMTP

2008-03-10 Thread Alain Roger
Ok, thanks for info, i've downloaded the MailEnable SW for free and i was able to check that my PHP mail function really send correctly emails :-) thanks a lot, A. On Mon, Mar 10, 2008 at 3:33 PM, Daniel Brown <[EMAIL PROTECTED]> wrote: > On Sun, Mar 9, 2008 at 4:38 PM, Alain Roger <[EMAIL PROTE

Re: [PHP] SMTP

2008-03-10 Thread Alain Roger
Hi Ray, we tested it with telnet and it seems that it works... but my mail client does not receive it. :-( php mail function just tells me that email can not be delivered. here is the function: > if (mail($to, $subject, $body)) > { > echo("Message successfully sent!"); > } > e

Re: [PHP] SMTP

2008-03-10 Thread Daniel Brown
On Sun, Mar 9, 2008 at 4:38 PM, Alain Roger <[EMAIL PROTECTED]> wrote: > Hi, > > i know that this is not necessary the best forum for that, but i need to get > a real feedback and i guess you already faced the same issue as mine. > basically, i develop php web application on windows XP platform.

RE: [PHP] SMTP

2008-03-10 Thread Andrés Robinet
> -Original Message- > From: Alain Roger [mailto:[EMAIL PROTECTED] > Sent: Monday, March 10, 2008 3:16 AM > To: Ray Hauge > Cc: PHP General List > Subject: Re: [PHP] SMTP > > Hi Ray, > > in my php.ini i have : > SMTP = localhost > smtp_port = 2

Re: [PHP] SMTP

2008-03-10 Thread Alain Roger
file and it seems ok. > > Maybe that means you already did that. The second issue might be that > your SMTP server is MS Exchange, and it requires authentication. > > If that is the case, then search for php SMTP authentication: > > > http://www.google.com/search?q=php+

RE: [PHP] SMTP

2008-03-09 Thread Andrés Robinet
> -Original Message- > From: Ray Hauge [mailto:[EMAIL PROTECTED] > Sent: Sunday, March 09, 2008 5:17 PM > To: Alain Roger > Cc: PHP General List > Subject: Re: [PHP] SMTP > > Alain Roger wrote: > > Hi, > > > > i know that this is not necessary th

Re: [PHP] SMTP

2008-03-09 Thread Ray Hauge
ue might be that your SMTP server is MS Exchange, and it requires authentication. If that is the case, then search for php SMTP authentication: http://www.google.com/search?q=php+smtp+authentication&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a -- R

[PHP] SMTP

2008-03-09 Thread Alain Roger
Hi, i know that this is not necessary the best forum for that, but i need to get a real feedback and i guess you already faced the same issue as mine. basically, i develop php web application on windows XP platform. So i have apache 2.24 installed and PHP 5.2.4. now i would like to test if my app

Re: [PHP] SMTP vs mail()

2008-01-17 Thread Manuel Lemos
Hello, on 01/17/2008 06:57 PM Richard Lynch said the following: > On Thu, January 17, 2008 3:50 am, Richard Heyes wrote: >>> You can easily make a mail queue in php yourself with a daemon that >>> checks the queue and sends waiting mail in batches of say 200 per >>> minute. (provided you have acce

Re: [PHP] SMTP vs mail()

2008-01-17 Thread Richard Lynch
On Thu, January 17, 2008 3:50 am, Richard Heyes wrote: >> You can easily make a mail queue in php yourself with a daemon that >> checks the queue and sends waiting mail in batches of say 200 per >> minute. (provided you have access to the cli on the server) > > Why when there MTAs? Your shared hos

Re: [PHP] SMTP vs mail()

2008-01-17 Thread Richard Heyes
You can easily make a mail queue in php yourself with a daemon that checks the queue and sends waiting mail in batches of say 200 per minute. (provided you have access to the cli on the server) Why when there MTAs? -- Richard Heyes http://www.websupportsolutions.co.uk Mailing list management

Re: [PHP] SMTP vs mail()

2008-01-16 Thread Nathan Rixham
You can easily make a mail queue in php yourself with a daemon that checks the queue and sends waiting mail in batches of say 200 per minute. (provided you have access to the cli on the server) Black http://rssphp.net a85020316bb687648d6f73c4eb3bec93 :msg::id Chris wrote: Manuel Lemos wrote:

Re: [PHP] SMTP vs mail()

2008-01-15 Thread Chris
Manuel Lemos wrote: Hello, on 01/15/2008 07:16 AM Per Jessen said the following: If there's any way to re-configure the MTA to queue the messages for later sending, that would save you a lot of overhead on the PHP end... The MTA will always queue the messages - well, that is certainly the case

Re: [PHP] SMTP vs mail()

2008-01-15 Thread Manuel Lemos
Hello, on 01/15/2008 07:16 AM Per Jessen said the following: >> If there's any way to re-configure the MTA to queue the messages for >> later sending, that would save you a lot of overhead on the PHP end... > > The MTA will always queue the messages - well, that is certainly the > case for postfi

Re: [PHP] SMTP vs mail()

2008-01-15 Thread mike
i can vouch. postfix rocks. i send it non-stop 30,000+ emails at a time (a loop from a database that does a popen("/usr/sbin/sendmail") on the local machine (also postfix) which then relays it to my actual public smtp server (running postfix) - and it just throws it all into the queue and chews on

Re: [PHP] SMTP vs mail()

2008-01-15 Thread Per Jessen
Richard Lynch wrote: > If there's any way to re-configure the MTA to queue the messages for > later sending, that would save you a lot of overhead on the PHP end... The MTA will always queue the messages - well, that is certainly the case for postfix. /Per Jessen, Zürich -- PHP General Mail

Re: [PHP] SMTP vs mail()

2008-01-14 Thread Richard Lynch
On Sat, January 12, 2008 4:28 am, Richard Heyes wrote: Assuming you're talking delivery to a local MTA (which will subsequently do the remote delivery), is speed really important? >>> For the amount of email I'm looking at (1000s, growing), yes. >>> >> >> Hmm, that's not quite what I was

Re: [PHP] SMTP vs mail()

2008-01-12 Thread Scott Wilcox
Per Jessen wrote: Richard Heyes wrote: Bearing in mind I haven't yet done any benchmarks, which do you think is faster - SMTP with multiple RCPT commands or the PHP mail() function (with it launching a separate sendmail process for each mail() function call)? I've done some rough b

Re: [PHP] SMTP vs mail()

2008-01-12 Thread Richard Heyes
Note - this was one call to mail(): mail(",, ..",subject,text); Granted, but as long as the email stays the same size when you compare mail() and something like SMTP, I wouldn't imagine the relative speeds varying significantly. Or maybe they would, I'll compare and see. -- Richard He

Re: [PHP] SMTP vs mail()

2008-01-12 Thread Per Jessen
Richard Heyes wrote: >> 1. Using mail(), same email sent to 1000 users. >> >> Script finished in 200ms (1000 emails delivered to local MTA). >> Delivery to target MTA over 100Mbit LAN took about 6s. > > That settles it then. The mail() command will be more than fast enough > for my needs. > > T

Re: [PHP] SMTP vs mail()

2008-01-12 Thread Richard Heyes
1. Using mail(), same email sent to 1000 users. Script finished in 200ms (1000 emails delivered to local MTA). Delivery to target MTA over 100Mbit LAN took about 6s. That settles it then. The mail() command will be more than fast enough for my needs. Thanks. -- Richard Heyes http://www.web

Re: [PHP] SMTP vs mail()

2008-01-12 Thread Per Jessen
Richard Heyes wrote: > Bearing in mind I haven't yet done any benchmarks, which do you think > is faster - SMTP with multiple RCPT commands or the PHP mail() > function (with it launching a separate sendmail process for each > mail() function call)? > I've done some rough benchmarking - 1. Usi

Re: [PHP] SMTP vs mail()

2008-01-12 Thread Richard Heyes
Assuming you're talking delivery to a local MTA (which will subsequently do the remote delivery), is speed really important? For the amount of email I'm looking at (1000s, growing), yes. Hmm, that's not quite what I was thinking of. The amount of emails to be delivered does not in my opinion

Re: [PHP] SMTP vs mail()

2008-01-12 Thread Per Jessen
Richard Heyes wrote: >> Assuming you're talking delivery to a local MTA (which will >> subsequently do the remote delivery), is speed really important? > > For the amount of email I'm looking at (1000s, growing), yes. > Hmm, that's not quite what I was thinking of. The amount of emails to be d

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Chris
Also don't forget the part where you shouldn't disconnect and reconnect between mails sent. indeed but I have experienced situations where the SMTP server refuses more than X number of messages on any one connection ... which meant having to get the script to disconnect/reconnect every 200 (ii

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Richard Lynch
On Fri, January 11, 2008 12:22 pm, Jochem Maas wrote: > Eric Butera schreef: >> On Jan 11, 2008 11:33 AM, Stut <[EMAIL PROTECTED]> wrote: >>> No brainer, SMTP will almost certainly be faster. My mailing list >>> system >>> (written in PHP obviously) can dump 600k customised emails to the >>> loca

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Richard Lynch
On Fri, January 11, 2008 10:29 am, Richard Heyes wrote: > Bearing in mind I haven't yet done any benchmarks, which do you think > is > faster - SMTP with multiple RCPT commands or the PHP mail() function > (with it launching a separate sendmail process for each mail() > function > call)? If mail()

Re: [PHP] SMTP vs mail()

2008-01-11 Thread mike
On 1/11/08, Richard Heyes <[EMAIL PROTECTED]> wrote: > > Assuming you're talking delivery to a local MTA (which will subsequently > > do the remote delivery), is speed really important? > > For the amount of email I'm looking at (1000s, growing), yes. one word: phpmailer (http://phpmailer.codeworx

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Manuel Lemos
Hello, on 01/11/2008 04:22 PM Jochem Maas said the following: > Eric Butera schreef: >> On Jan 11, 2008 11:33 AM, Stut <[EMAIL PROTECTED]> wrote: >>> No brainer, SMTP will almost certainly be faster. My mailing list system >>> (written in PHP obviously) can dump 600k customised emails to the local

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Richard Heyes
Assuming you're talking delivery to a local MTA (which will subsequently do the remote delivery), is speed really important? For the amount of email I'm looking at (1000s, growing), yes. -- Richard Heyes http://www.websupportsolutions.co.uk Knowledge Base and HelpDesk software that can cut the

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Manuel Lemos
Hello, on 01/11/2008 02:33 PM Stut said the following: > Richard Heyes wrote: >> Bearing in mind I haven't yet done any benchmarks, which do you think >> is faster - SMTP with multiple RCPT commands or the PHP mail() >> function (with it launching a separate sendmail process for each >> mail() fun

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Per Jessen
Richard Heyes wrote: > Bearing in mind I haven't yet done any benchmarks, which do you think > is faster - SMTP with multiple RCPT commands or the PHP mail() > function (with it launching a separate sendmail process for each > mail() function call)? Assuming you're talking delivery to a local MTA

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Daniel Brown
On Jan 11, 2008 1:26 PM, Eric Butera <[EMAIL PROTECTED]> wrote: > Weird! I've never heard of that but I really don't doubt it. Working > with e-mail is the least favorite part of my work. he said, via email. -- Daniel P. Brown Senior Unix Geek and #1 Rated "Year's Coolest Guy" By Se

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Richard Heyes
There is no such thing. :) Perhaps not then... :-) -- Richard Heyes http://www.websupportsolutions.co.uk Knowledge Base and HelpDesk software that can cut the cost of online support ** NOW OFFERING FREE ACCOUNTS TO CHARITIES AND NON-PROFITS ** -- PHP General Mailing List (http://www.php.net/

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Eric Butera
On Jan 11, 2008 1:33 PM, Richard Heyes <[EMAIL PROTECTED]> wrote: > > I used to use htmlMimeMail, but now I use Zend_Mail as it has a better > > API and is also faster in regards to the quoted printable encoding. > > IIRC htmlMimeMail use the PHP built in function to do quoted printable > encoding.

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Richard Heyes
I used to use htmlMimeMail, but now I use Zend_Mail as it has a better API and is also faster in regards to the quoted printable encoding. IIRC htmlMimeMail use the PHP built in function to do quoted printable encoding. -- Richard Heyes http://www.websupportsolutions.co.uk Knowledge Base and

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Eric Butera
On Jan 11, 2008 1:22 PM, Jochem Maas <[EMAIL PROTECTED]> wrote: > Eric Butera schreef: > > On Jan 11, 2008 11:33 AM, Stut <[EMAIL PROTECTED]> wrote: > >> No brainer, SMTP will almost certainly be faster. My mailing list system > >> (written in PHP obviously) can dump 600k customised emails to the l

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Jochem Maas
Eric Butera schreef: On Jan 11, 2008 11:33 AM, Stut <[EMAIL PROTECTED]> wrote: No brainer, SMTP will almost certainly be faster. My mailing list system (written in PHP obviously) can dump 600k customised emails to the local SMTP server in a couple of hours. Doing the same with the mail command t

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Eric Butera
On Jan 11, 2008 11:33 AM, Stut <[EMAIL PROTECTED]> wrote: > No brainer, SMTP will almost certainly be faster. My mailing list system > (written in PHP obviously) can dump 600k customised emails to the local > SMTP server in a couple of hours. Doing the same with the mail command > took over 24 hour

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Daniel Brown
On Jan 11, 2008 11:36 AM, Richard Heyes <[EMAIL PROTECTED]> wrote: > >> Bearing in mind I haven't yet done any benchmarks, which do you think > >> is faster - SMTP with multiple RCPT commands or the PHP mail() > >> function (with it launching a separate sendmail process for each > >> mail() functio

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Richard Heyes
Bearing in mind I haven't yet done any benchmarks, which do you think is faster - SMTP with multiple RCPT commands or the PHP mail() function (with it launching a separate sendmail process for each mail() function call)? No brainer, SMTP will almost certainly be faster. My mailing list system

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Stut
Richard Heyes wrote: Bearing in mind I haven't yet done any benchmarks, which do you think is faster - SMTP with multiple RCPT commands or the PHP mail() function (with it launching a separate sendmail process for each mail() function call)? No brainer, SMTP will almost certainly be faster. M

[PHP] SMTP vs mail()

2008-01-11 Thread Richard Heyes
Hi, Bearing in mind I haven't yet done any benchmarks, which do you think is faster - SMTP with multiple RCPT commands or the PHP mail() function (with it launching a separate sendmail process for each mail() function call)? Thanks. -- Richard Heyes http://www.websupportsolutions.co.uk Kno

Re: [PHP] SMTP unable to relay

2007-10-25 Thread Wolf
As previously posted, you need to work with your mail server admin. sendmail is not normally on WinDoze boxes, so do some googling for the setup you have, and talk with your admins to see what you need to do to get it set up to work correctly. Wolf Diana wrote: > I have tried settiing my php.ini

[PHP] SMTP

2007-10-25 Thread Diana
I dont know what I did but now I get this message Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" -- Diana Castillo Tsanalytics S.A. Tel: 34 913 595 436 Fax: 34 913 595 439 Mov: 34 609 954 536 [EMAIL PROTECTED] www.tsanalytics.com -- PHP General Mailing List (http:

[PHP] SMTP unable to relay

2007-10-25 Thread Diana
I have tried settiing my php.ini to SMTP = localhost as well as using the SMTP of my regular mail, and I keep on getting this. Warning: mail() [function.mail]: SMTP server response: 550 5.7.1 Unable to relay for [EMAIL PROTECTED] in C:\Inetpub\wwwroot\intranet\test.php on line 11 -- Diana Casti

Re: [PHP] SMTP & PHP: Spam Tagging Problem

2005-10-25 Thread Richard Lynch
On Tue, October 25, 2005 3:27 am, Cabbar Duzayak wrote: > I am having a problem with my system when sending e-mails to yahoo > accounts, and it has been baffling me for the last couple of days, > actually I should say it is driving me crazy... > > As I mentioned, I have a cpanel and have 2 domains/

[PHP] SMTP & PHP: Spam Tagging Problem

2005-10-25 Thread Cabbar Duzayak
Hi, I am having a problem with my system when sending e-mails to yahoo accounts, and it has been baffling me for the last couple of days, actually I should say it is driving me crazy... As I mentioned, I have a cpanel and have 2 domains/sites with dedicated IP addresses on my system. The base acc

Re: [PHP] smtp server

2004-12-16 Thread Yannick Warnier
Le jeu 16/12/2004 à 14:43, Pablo D Marotta a écrit : > Hi there.. > I´m trying to use the mail function but I have a problem. I´m working in a LAN > with more or less 30 pcs, that places inside a huge network, and I just can´t > use the enterprise smtp server. > How can i set a valid smtp server?

Re: [PHP] smtp server

2004-12-16 Thread Richard Lynch
Pablo D Marotta wrote: > Hi there.. > I´m trying to use the mail function but I have a problem. I´m working in a > LAN > with more or less 30 pcs, that places inside a huge network, and I just > can´t > use the enterprise smtp server. > How can i set a valid smtp server? If you have Microsoft lice

Re: [PHP] smtp server

2004-12-16 Thread M. Sokolewicz
Jason Wong wrote: On Thursday 16 December 2004 23:00, Mike wrote: If you're on any of the *nix'es, it's hard to go wrong with sendmail. I think you mean it's hard not to go wrong with sendmail ;-) no, that means it's easy to go wrong with sendmail... I think Mike did mean that it's hard to go wr

Re: [PHP] smtp server

2004-12-16 Thread Jason Wong
On Thursday 16 December 2004 23:00, Mike wrote: > If you're on any of the *nix'es, it's hard to go wrong with sendmail. I think you mean it's hard not to go wrong with sendmail ;-) -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web Design & H

Re: [PHP] smtp server

2004-12-16 Thread Jason Wong
On Thursday 16 December 2004 22:43, Pablo D Marotta wrote: Please note that this has nothing to do with PHP. > I´m trying to use the mail function but I have a problem. I´m working in a > LAN with more or less 30 pcs, that places inside a huge network, and I just > can´t use the enterprise smtp s

RE: [PHP] smtp server

2004-12-16 Thread Mike
> Hi there.. > I´m trying to use the mail function but I have a problem. I´m > working in a LAN with more or less 30 pcs, that places inside > a huge network, and I just can´t use the enterprise smtp server. > How can i set a valid smtp server? > I thought about installing some "good-free" smtp s

[PHP] smtp server

2004-12-16 Thread Pablo D Marotta
Hi there.. I´m trying to use the mail function but I have a problem. I´m working in a LAN with more or less 30 pcs, that places inside a huge network, and I just can´t use the enterprise smtp server. How can i set a valid smtp server? I thought about installing some "good-free" smtp server on my ow

Re: [PHP] SMTP and changing the character set

2004-05-08 Thread Todd Cary
Thank you both for the help. One more question: can SMPT use the Asian character set since it is 16 bits? Todd Dave G wrote: Todd, Is there a way to specify a character set in a SMTP email? I've found that SMTP is really, really very particular about how you apply spacing and carriage retu

RE: [PHP] SMTP and changing the character set

2004-05-08 Thread Dave G
Todd, > Is there a way to specify a character set in a SMTP email? I've found that SMTP is really, really very particular about how you apply spacing and carriage returns when passing a content type header from PHP. In the PHP mail() function, you want to add the content type header like so: I

RE: [PHP] SMTP and changing the character set

2004-05-07 Thread Chris
PROTECTED] Sent: Friday, May 07, 2004 4:51 PM To: [EMAIL PROTECTED] Cc: Kim Wagner; Brian Feifarek; Gus Scherer Subject: [PHP] SMTP and changing the character set Is there a way to specify a character set in a SMTP email? Todd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

[PHP] SMTP and changing the character set

2004-05-07 Thread Todd Cary
Is there a way to specify a character set in a SMTP email? Todd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SMTP and GroupWise

2004-04-25 Thread Burhan Khalid
Todd Cary wrote: My client is using GroupWise to relay *without* having relay turned on and it needs/uses an authenication that is different from the regular SMTP. Here is a trace of a message that went through: [ snipped POP before SMTP authentication ] Does anyone know of a class that can p

Re: [PHP] SMTP and GroupWise

2004-04-22 Thread Jason Wong
On Friday 23 April 2004 03:27, Todd Cary wrote: > I am using the phpmailer class, and I do not see mention of using the > POP3 for authentication. Am I missing something? I don't think it supports POP-before-relay last time I looked - which was quite a while ago. What you need to do is login

Re: [PHP] SMTP and GroupWise

2004-04-22 Thread Todd Cary
David - I am using the phpmailer class, and I do not see mention of using the POP3 for authentication. Am I missing something? Todd David O'Brien wrote: That's just basic pop before smtp. A common way of authenticating. Just make a connection to the pop server after the hello and before sendi

Re: [PHP] SMTP and GroupWise

2004-04-22 Thread David O'Brien
That's just basic pop before smtp. A common way of authenticating. Just make a connection to the pop server after the hello and before sending the email. Most mail servers cache this info for a certain amount of time so you may not have to do it every time you send. I know that http://phpmailer.so

[PHP] SMTP and GroupWise

2004-04-22 Thread Todd Cary
My client is using GroupWise to relay *without* having relay turned on and it needs/uses an authenication that is different from the regular SMTP. Here is a trace of a message that went through: 02/11/2004 06:55:27 SMTP to rcpt: Al Smith <[EMAIL PROTECTED]> 02/11/2004 06:55:29 < +OK GroupWise P

[PHP] SMTP Authentication with PHP

2004-04-15 Thread Mike Knittel
My SMTP server requires authentication when sending mail. How do I send SMTP authentication information when using the PHP mail() function? Thank you. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] SMTP Authentication

2004-03-12 Thread Beauford
Hi, How would I set up PHP to use SMTP authentication when I send an email. For example, in MS Outlook I have authentication set to use the same settings as my incoming mail. I have searched around but haven't found anything that deals with this. Thanks -- PHP General Mailing List (http://www.p

[PHP] SMTP ERROR

2004-03-03 Thread carlos castillo
When i try to send a mail i receive the followin error Warning: mail() [function.mail]: SMTP server response: 503 Comando o secuencia de comandos inesperados in E:\wwwroot\helpdesk_imagine\classes\helpdesk.class.php on line 1054 But the mail is sent, it occurs sometimes not always. Thanks, Car

Re: [PHP] SMTP vs POP3

2003-12-04 Thread Šimon Tóth
Read the online manual - IMAP functions, they support almost everything. Simon Toth mailto:[EMAIL PROTECTED] http://kerberos.knows.it -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] SMTP vs POP3

2003-12-04 Thread orlandopozo
I have this code to send email via STMP server $msg = "this is a test - ojpp - mail function"; $senderFrom = "[EMAIL PROTECTED]"; $receiverTo = "[EMAIL PROTECTED]"; $subject = "test of the mail function"; $mailHeaders = "From: $senderFrom\n"; $mailHeaders .= "Reply-to: $senderFrom\n"; $mailHeader

[PHP] SMTP vs POP3

2003-12-04 Thread orlandopozo
I have this code to send email via STMP server $msg = "this is a test - ojpp - mail function"; $senderFrom = "[EMAIL PROTECTED]"; $receiverTo = "[EMAIL PROTECTED]"; $subject = "test of the mail function"; $mailHeaders = "From: $senderFrom\n"; $mailHeaders .= "Reply-to: $senderFrom\n"; $mailHeaders

RE: [PHP] smtp mail sending on unix

2003-10-08 Thread Javier Tacon
Try a class to send emails by smtps, like phpmailer: http://phpmailer.sourceforge.net/ -Mensaje original- De: Jaanus Torp [mailto:[EMAIL PROTECTED] Enviado el: miércoles, 08 de octubre de 2003 11:29 Para: [EMAIL PROTECTED] Asunto: [PHP] smtp mail sending on unix Importancia: Baja Hi

[PHP] smtp mail sending on unix

2003-10-08 Thread Jaanus Torp
Hi, I am running apache in a chrooted enviorment on solaris and trying to get mail() to work over smtp rather than sendmail, but unsuccessfully. php.ini states that this is for win32 only. Is there any solution to that? It seems quite awkward to have the code for smtp but no option to run it. tha

RE: [PHP] SMTP server response: 550 5.7.1 Unable to relay for

2003-08-27 Thread Chris W. Parker
Àlex Camps on Wednesday, August 27, 2003 12:04 PM said: > i have windows xp with apache,php and argomail > but i cant send emails from php why? According to your subject it looks like the computer you are trying to use to send the email does not allow relaying. >

[PHP] SMTP server response: 550 5.7.1 Unable to relay for

2003-08-27 Thread Àlex Camps
i have windows xp with apache,php and argomail but i cant send emails from php why? thaks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] SMTP - Authorization?

2003-08-26 Thread Mathiau
Another life saver! This news group is great! Thnx. -Original Message- From: Manuel Lemos [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 26, 2003 12:09 AM To: Mathiau Cc: [EMAIL PROTECTED] Subject: Re: [PHP] SMTP - Authorization? Hello, On 08/25/2003 09:34 PM, Mathiau wrote

Re: [PHP] SMTP - Authorization?

2003-08-26 Thread Manuel Lemos
Hello, On 08/25/2003 09:34 PM, Mathiau wrote: basically i am sending out a mailing list to customers, - using a PHP script, however the SMTP i am using needs to have Authorization to log into the outgoing SMTP - i HAVE to use this authentication no if's and ot butt's., otherwise i will be blocked

[PHP] SMTP - Authorization?

2003-08-26 Thread Mathiau
Hey all! glad to bea here! got alot to learn! k, basically i am sending out a mailing list to customers, - using a PHP script, however the SMTP i am using needs to have Authorization to log into the outgoing SMTP - i HAVE to use this authentication no if's and ot butt's., otherwise i will be bl

  1   2   >