[PHP] Re: php+mail+TLS/SSL

2008-02-14 Thread Manuel Lemos
Hello, on 02/14/2008 12:34 PM julian said the following: > I am using phpmailer currently to send email from my applications. My > ISP is restricting the usage of email without SSL/TLS and my SMTP > connections have started to fail... > > Any hints on the best approach to send email from php appp

[PHP] Re: PHP mail() problem

2007-03-20 Thread Manuel Lemos
Hello, on 03/20/2007 06:54 AM Delta Storm said the following: > Hi, > > I'm having problem with character encoding in PHP mail functions. > > CODE: > $headers.= "Content-Type: text/html; charset=iso-8859-1"; > $headers .= "MIME-Version: 1.0 "; > $headers .= "Content-Transfer-Enco

[PHP] Re: PHP mail

2005-05-05 Thread Mathieu Dumoulin
Eustace wrote: I am relatively new to PHP and could use some help. I have a form, which is basically in an email format, from, subject, and message. How do I then send this to an email? I know a bit about the mail function, somebody show me the ropes please! Eustace I'll show you how we do it here

[PHP] Re: PHP - mail problems - HELP!!! PLEASE

2005-01-15 Thread Manuel Lemos
Hello, on 01/15/2005 12:59 AM Kelly said the following: I am having trouble with PHP 5.0.3. I am running Apache 1.3.29. I am running Solaris 9 x86 on an Intel box. I get no errors when I start Apache. I get no errors when I run configtest. My problem is mail() does not work. It does invoke

[PHP] Re: Php Mail not working properly

2004-12-10 Thread Manuel Lemos
Hello, Phpdiscuss - Php Newsgroups And Mailing Lists wrote: I have a dedicated Red Hat linux boxed leased from Interland and the php mail function does not work. I have found several articles on things to try and have tried everything I saw but to no avail. I set up a php script to mail and then

Re: [PHP] Re: php mail() error

2004-11-14 Thread Manuel Lemos
Hello, On 11/14/2004 04:11 AM, Curt Zirzow wrote: Im using the php mail() function to try send an email to a user that has just registered. mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers Website Registration' , 'Welcome'); But when I get the following error back.: Warning: mail(): SMTP serve

Re: [PHP] Re: php mail() error

2004-11-13 Thread Curt Zirzow
* Thus wrote Manuel Lemos: > Hello, > > On 11/13/2004 04:12 AM, Curt Zirzow wrote: > >>>Im using the php mail() function to try send an email to a user that has > >>>just registered. > >>> > >>>mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers Website > >>>Registration' , > >>>'Welcome'); > >>>

Re: [PHP] Re: php mail() error

2004-11-13 Thread Manuel Lemos
Hello, On 11/13/2004 04:12 AM, Curt Zirzow wrote: Im using the php mail() function to try send an email to a user that has just registered. mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers Website Registration' , 'Welcome'); But when I get the following error back.: Warning: mail(): SMTP server

Re: [PHP] Re: php mail() error

2004-11-12 Thread Curt Zirzow
* Thus wrote Manuel Lemos: > Hello, > > On 11/10/2004 10:36 AM, Garth Hapgood - Strickland wrote: > >Im using the php mail() function to try send an email to a user that has > >just registered. > > > >mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers Website Registration' , > >'Welcome'); > > >

[PHP] Re: php mail() error

2004-11-10 Thread Manuel Lemos
Hello, On 11/10/2004 10:36 AM, Garth Hapgood - Strickland wrote: Im using the php mail() function to try send an email to a user that has just registered. mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers Website Registration' , 'Welcome'); But when I get the following error back.: Warning: mai

[PHP] Re: php mail help

2004-10-28 Thread M. Sokolewicz
*cough*quotes*cough* Patrick E Phillips wrote: I have php installed on my PC as well as an apache webserver and mysql. I am using cox.net as my cable internet provider. They block port 25 but I do not know if that affects what I am trying to do... which is: use the mail() function to send email for

Re: [PHP] Re: php mail() scaleability

2004-04-25 Thread Manuel Lemos
Hello, On 04/25/2004 06:03 PM, Jason Sheets wrote: Take a look at the Mail Queue class from PEAR, it enables you to put mail in the Queue instead of real time delivery. http://pear.php.net/packages.php?catpid=14&catname=Mail This is a bit of an overkill as it attempts to provide an inefficient so

RE: [PHP] Re: php mail() scaleability

2004-04-25 Thread Jason Sheets
M To: [EMAIL PROTECTED] Subject: Re: [PHP] Re: php mail() scaleability Manuel Lemos wrote: > Hello, > > On 04/25/2004 04:18 PM, Josh Klobe wrote: > >> Using mail($to, $subject, $content, $headers) takes way too long >> when attempting to mail to 30k people. This seems to

Re: [PHP] Re: php mail() scaleability

2004-04-25 Thread Manuel Lemos
Hello, On 04/25/2004 05:43 PM, Travis Low wrote: Using mail($to, $subject, $content, $headers) takes way too long when attempting to mail to 30k people. This seems to be a result of a socket being opened for each send. Is there a better way to approach this situation via php? Under Unix/Linux

Re: [PHP] Re: php mail() scaleability

2004-04-25 Thread Travis Low
Manuel Lemos wrote: Hello, On 04/25/2004 04:18 PM, Josh Klobe wrote: Using mail($to, $subject, $content, $headers) takes way too long when attempting to mail to 30k people. This seems to be a result of a socket being opened for each send. Is there a better way to approach this situation via ph

[PHP] Re: php mail() scaleability

2004-04-25 Thread Manuel Lemos
Hello, On 04/25/2004 04:18 PM, Josh Klobe wrote: Using mail($to, $subject, $content, $headers) takes way too long when attempting to mail to 30k people. This seems to be a result of a socket being opened for each send. Is there a better way to approach this situation via php? Under Unix/Linux,

[PHP] Re: PHP Mail handler?

2003-11-19 Thread Manuel Lemos
Hello, On 11/19/2003 11:55 AM, Jacques Roux wrote: Is there a mail function or object that I can use on my PHP sites that does the same as the CDONTS object in ASP? Where can I find some tutorials on this subject? You may want to try this class to do what CDONTS does and more: http://www.phpclas

[PHP] RE:[PHP] mail mime attachment

2003-08-27 Thread Steven Murphy
I've been working on a simple mail attachment script, that is now working. Its pretty well documented in the code. You can download it at www.pfohlsolutions.com/projects/mailer/mailer.zip. It verifies fields and hides the to email address from spiders. Email me if you have any questions or suggesti

[PHP] Re: PHP mail function From header not working

2003-02-13 Thread Lee W
"Marco Alting" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > When I try to use a php script, to send an email, the From header is > replaced by a senders email address of my provider. Is there any way to make > it so my email address shows up in the From heade

[PHP] Re: PHP mail function From header not working

2003-02-13 Thread Lee W
"Marco Alting" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > When I try to use a php script, to send an email, the From header is > replaced by a senders email address of my provider. Is there any way to make > it so my email address shows up in the From header

[PHP] Re: PHP mail() problems FIXED

2002-08-01 Thread John Williams
John Williams wrote: >I'm having a problem getting the mail() function working on php 4.2.2. > >I get the error message: >Warning: mail() is not supported in this PHP build > >I'm running Solaris 8 and have set the symlink for sendmail. I have >recompiled PHP, set the php.ini to point to sendmai

[PHP] Re: php 'mail()' security

2002-07-29 Thread Richard Lynch
>How can I make my form which entered by a user, then sent to a company >employee, secure, not vulnerable attack? What kind of attack?... Rule #1. NEVER trust data coming in from the user. Things to maybe check: The email should be within a certain reasonable length. Their subject should not c

[PHP] Re: PHP Mail problem

2002-05-24 Thread Michael Virnstein
refer to the manual of your email server and check for quota settings. You obviously reached the quota limit there and now you're not allowed to send any data, until the quota is reset. This may be on a daily or monthly basis or perhaps you have to do it manually. Regards Michael "Manisha" <[EMA

[PHP] Re: PHP Mail() Question

2002-03-08 Thread LaserJetter
Its probably a problem with your mail server software not being able to send email out. I think you need t tell it to connect to another email server outside of your network "Mindless Bot" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello, > > I hope maybe

[PHP] Re: PHP MAIL function...why wont it work????

2002-02-27 Thread jtjohnston
Your smtp is valid? Try error checking for that? See you php.ini. If you are running it on localhost you might try the same smtp that is used in your emailer. I gaffed on that once. :) Brad Wright wrote: > Hi all... I have a line in a page that should send me an email when the page > is loaded.

[PHP] Re: php - mail() and sendmails clientmqueue directory

2002-02-24 Thread Luke Vogel
Luke Vogel wrote: [snip] > Has anyone else experienced this issue, and or can anyone recommend a > secure solution. Found the solution ... http://www.sendmail.org/~ca/email/doc8.12/SECURITY -- Regards Luke -- Q: What does FAQ stand for? A: We are Frequently Asked this Question, and we h