php-general Digest 18 Apr 2009 17:50:39 -0000 Issue 6074

2009-04-18 Thread php-general-digest-help
php-general Digest 18 Apr 2009 17:50:39 - Issue 6074 Topics (messages 291659 through 291660): Re: Setting Up A Directory For HTTPS Secure Certificate 291659 by: Michael A. Peters Re: What is wrong with this code 291660 by: Reese Administrivia: To subscribe to the digest,

Re: [PHP] What is wrong with this code

2009-04-18 Thread Reese
9el wrote: *Note:* It is worth noting that the mail() function is not suitable for larger volumes of email in a loop. This function opens and closes an SMTP socket for each email, which is not very efficient. For the sending of large amounts of email, see the » PEAR::Mail, and » PEAR::Mail_Queue

Re: [PHP] What is wrong with this code

2009-04-18 Thread 9el
But in practice. I mean in real life you'll find the mail() function is disabled in most servers :)

Re: [PHP] What is wrong with this code

2009-04-18 Thread Reese
9el wrote: But in practice. I mean in real life you'll find the mail() function is disabled in most servers :) That's nice, but how many is larger volumes of email? 500? 5,000? 25,000? I note PEAR:Mail has 3 open bugs, PEAR:Mail_Mime has 23 with 3 open support requests. PHPMailer was

Re: [PHP] What is wrong with this code

2009-04-18 Thread Manuel Lemos
Hello, 9el wrote: *Note:* It is worth noting that the mail() function is not suitable for larger volumes of email in a loop. This function opens and closes an SMTP socket for each email, which is not very efficient. For the sending of large amounts of email, see the » PEAR::Mail, and »

[PHP] Soap Client Help

2009-04-18 Thread EPA WC
Hi All, I am using the following code to build a SoapClient with some web service: ?php ini_set(soap.wsdl_cache_enabled, 0); ini_set('default_socket_timeout', 600); $client = new SoapClient(http://iaspub.epa.gov/webservices/StationService/index.html?WSDL,array('trace' = 1));