[PHP] Mail form

2002-10-25 Thread Trasca Ion-Catalin
Why my mail prcessing script don't recognize the value from the form file. If I call the $numele variable it's just output a null. This is the form.html html head titleNumele/title body form name=form method=post action=mail.php p align=centerNume: input name=numele type=text value=Cum

Re: [PHP] Mail form

2002-10-25 Thread Marek Kilimajer
Register globals problem - either use $_POST['numele'] (prefered), or turn register_globals on. Trasca Ion-Catalin wrote: Why my mail prcessing script don't recognize the value from the form file. If I call the $numele variable it's just output a null. This is the form.html html head

Re: [PHP] php mail()

2002-10-15 Thread Juhan Kundla
Ühel ilusal päeval [14-10-2002 22:46] kirjutas John W. Holmes: Hey do you guys know how to correct this problem with sending email? A custumer uses mail() to send the email and it isn't deliverable. So the message bounces. But since the local sendmail sent the email it thus bounces

[PHP] php mail()

2002-10-14 Thread Rodrigo Peres
Hi list, I trying to send mail using PHP's mail() function without success. My email is rejected because it goes with apache@localhost. I've tried everything put a diferent from in header etc. Does anyone have a clue My system is a RedHAT 7, PHP4.2.3, sendmail thank's n advance -- --

RE: [PHP] php mail()

2002-10-14 Thread John W. Holmes
Hi list, I trying to send mail using PHP's mail() function without success. My email is rejected because it goes with apache@localhost. I've tried everything put a diferent from in header etc. Does anyone have a clue My system is a RedHAT 7, PHP4.2.3, sendmail thank's n advance

RE: [PHP] php mail()

2002-10-14 Thread Brad Dameron
' Subject: RE: [PHP] php mail() Hi list, I trying to send mail using PHP's mail() function without success. My email is rejected because it goes with apache@localhost. I've tried everything put a diferent from in header etc. Does anyone have a clue My system is a RedHAT 7

RE: [PHP] php mail()

2002-10-14 Thread Marco Tabini
. 1-888-8TSCNET -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED]] Sent: Monday, October 14, 2002 12:17 PM To: 'Rodrigo Peres'; 'PHP' Subject: RE: [PHP] php mail() Hi list, I trying

RE: [PHP] php mail()

2002-10-14 Thread John W. Holmes
Hey do you guys know how to correct this problem with sending email? A custumer uses mail() to send the email and it isn't deliverable. So the message bounces. But since the local sendmail sent the email it thus bounces to root's mailbox instead of say the replyto address. Anyone know how

RE: [PHP] php mail()

2002-10-14 Thread Brad Dameron
Silverdale, WA. 1-888-8TSCNET -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED]] Sent: Monday, October 14, 2002 12:47 PM To: 'Brad Dameron'; 'PHP' Subject: RE: [PHP] php mail() Hey do you guys know how

Re: [PHP] php mail()

2002-10-14 Thread Paul Roberts
' [EMAIL PROTECTED] Sent: Monday, October 14, 2002 8:44 PM Subject: RE: [PHP] php mail() Hey do you guys know how to correct this problem with sending email? A custumer uses mail() to send the email and it isn't deliverable. So the message bounces. But since the local sendmail sent the email it thus

[PHP] Mail

2002-10-09 Thread Steel
Hi group, I have a problem. There is no sendmail on the hoster's computer. (OS Unix-like) Can I send mail in any other way? Please help! -- The Same, Steel mailto:[EMAIL PROTECTED] http://www.none.ru -- PHP General Mailing List

RE: [PHP] Mail

2002-10-09 Thread Timothy J Hitchens
Get a SMTP sender class.. have a look at www.zend.com Timothy Hitchens (HITCHO) [EMAIL PROTECTED] HITCHO has Spoken! -Original Message- From: Steel [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 9 October 2002 7:32 PM To: [EMAIL PROTECTED] Subject: [PHP] Mail Hi group, I have

[PHP] mail problem Sendmail 8.12.4

2002-10-08 Thread Devin Atencio
I am trying to get PHP to send mail through my FreeBSD machine and my machine is running Sendmail 8.12.4, and I have the path to sendmail in my /usr/local/lib/php.ini. I am using PHP 4.2.3 but it fails to send mail. My /var/log/maillog shows the attempt but nothing happens: Oct 8 11:12:18

Re: [PHP] mail problem Sendmail 8.12.4

2002-10-08 Thread Adam Voigt
In your sendmail path, do you have -t -i appended to the path? Like: /usr/bin/sendmail -t -i Adam Voigt [EMAIL PROTECTED] On Tue, 2002-10-08 at 13:15, Devin Atencio wrote: I am trying to get PHP to send mail through my FreeBSD machine and my machine is running Sendmail 8.12.4, and I have

Re: [PHP] mail problem Sendmail 8.12.4

2002-10-08 Thread Devin Atencio
Yes I do have -t -i at the end of the path but it still doesn't work. Any other ideas? On Tue, 2002-10-08 at 11:17, Adam Voigt wrote: In your sendmail path, do you have -t -i appended to the path? Like: /usr/bin/sendmail -t -i Adam Voigt [EMAIL PROTECTED] On Tue, 2002-10-08 at 13:15,

Re: [PHP] mail problem Sendmail 8.12.4

2002-10-08 Thread Chris Hewitt
Devin Atencio wrote: to sendmail in my /usr/local/lib/php.ini. I am using PHP 4.2.3 but it fails to send mail. My /var/log/maillog shows the attempt but nothing happens: Oct 8 11:12:18 stardust sendmail[84142]: g98HCIsQ084142: from=nobody, size=331, class=0, nrcpts=0, msgid=[EMAIL PROTECTED],

[PHP] MAIL taking 60 seconds to send... (too long)

2002-10-07 Thread Negretti, John (CCI-San Diego)
Hello All, I have a script which is using mail() to send an e-mail message. It seems to be working, yet taking as long as 60-65 seconds just to send the e-mail. The e-mail has no attachments and only has one line in it. Does anyone have experience with this issue. I am using

Re: [PHP] MAIL taking 60 seconds to send... (too long)

2002-10-07 Thread Marco Tabini
Hey John-- Couple of ideas: 1) Is your sendmail configured as a relay? As such your PHP process may have to wait for the e-mail to be relayed before returning, which might explain why it's taking so long. The same might happen if your machine is very busy (although that has never happened to

Re: [PHP] MAIL taking 60 seconds to send... (too long)

2002-10-07 Thread @ Edwin
Hello, Perhaps, a DNS setting problem? - E On Tuesday, October 08, 2002 1:25 AM Negretti, John (CCI-San Diego) wrote: Hello All, I have a script which is using mail() to send an e-mail message. It seems to be working, yet taking as long as 60-65 seconds just to send the e-mail. The e-mail

Re: [PHP] MAIL taking 60 seconds to send... (too long)

2002-10-07 Thread Brad Pauly
Maybe your /etc/hosts file. What does you maillog say? # tail /var/log/maillog Brad On Mon, 2002-10-07 at 10:52, Edwin wrote: Hello, Perhaps, a DNS setting problem? - E On Tuesday, October 08, 2002 1:25 AM Negretti, John (CCI-San Diego) wrote: Hello All, I have a script

Re: [PHP] mail function problems

2002-10-02 Thread Debbie Dyer
Message - From: Dan McCullough [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 02, 2002 12:46 AM Subject: [PHP] mail function problems I use the mail function tons, never had a problem. I am working with a client with a different hosting vendor, they are using PHP 4.2.3

Re: [PHP] mail function problems

2002-10-02 Thread Dan McCullough
] To: [EMAIL PROTECTED] Sent: Wednesday, October 02, 2002 12:46 AM Subject: [PHP] mail function problems I use the mail function tons, never had a problem. I am working with a client with a different hosting vendor, they are using PHP 4.2.3, which I guess was a recient upgrade

Re: [PHP] mail headers mail filtering

2002-10-01 Thread debbie_dyer
policy and if they do what is it. Debbie - Original Message - From: Tom Rogers [EMAIL PROTECTED] To: debbie_dyer [EMAIL PROTECTED] Sent: Tuesday, October 01, 2002 2:13 AM Subject: Re: [PHP] mail headers mail filtering Hi, Tuesday, October 1, 2002, 12:09:06 AM, you wrote: d More

[PHP] mail function problems

2002-10-01 Thread Dan McCullough
I use the mail function tons, never had a problem. I am working with a client with a different hosting vendor, they are using PHP 4.2.3, which I guess was a recient upgrade, anyway I was informed by the client that he wasnt getting email submissions from the website, but he was getting other

[PHP] mail headers mail filtering

2002-09-30 Thread debbie_dyer
More and more emails seem to be getting blocked by mail filtering systems looking for spam (but trashing legitimate mail at the same time). Does anyone have any tips for ensuring mails get through these systems (with regard to headers) or do we just have to accept now that email can no longer

[PHP] mail headers filtering

2002-09-30 Thread Debbie Dyer
I sent this mail earlier:- More and more emails seem to be getting blocked by mail filtering systems looking for spam (but trashing legitimate mail at the same time). Does anyone have any tips for ensuring mails get through these systems (with regard to headers) or do we just have to accept

Re: [PHP] mail headers filtering

2002-09-30 Thread Chris Hewitt
Debbie, Your post got through. I've not seen any replies. If all ISPs dealt with spam generated by their own customers promptly, and passed on the info to the right ISP if not them, then the net could be virtually spam free (well, maybe). Regards Chris Debbie Dyer wrote: I sent this mail

[PHP] mail + memory question

2002-09-29 Thread Jonas Geiregat
this is my code what I want to do is generate a pdf file(not save it on hd of server but in memory) then send it as attachement to someone $pdf = pdf_new(); pdf_open_file($pdf,); pdf_begin_page($pdf, 595, 842);

[PHP] mail + pdf + memory question

2002-09-29 Thread Jonas Geiregat
this is my code what I want to do is generate a pdf file(not save it on hd of server but in memory) then send it as attachement to someone $pdf = pdf_new(); pdf_open_file($pdf,); pdf_begin_page($pdf, 595, 842);

Re: [PHP] mail + pdf + memory question

2002-09-29 Thread Rasmus Lerdorf
$mail-getFile() obviously reads in a file from the disk. You already have your attachment in memory, so don't call that function. Just do $attachment = $data; -Rasmus On Sun, 29 Sep 2002, Jonas Geiregat wrote: this is my code what I want to do is generate a pdf file(not save it on hd of

[PHP] Mail problem with more than 1k users

2002-09-23 Thread Research and Development
Hello. I wrote a PHP script that will pull records from a database (emails) and then mail something to the emails in the result set. Pretty simple and it worked. Now that the database has over 1 thousand records I began to experience performance problems. I figured that my problem was that

RE: [PHP] Mail problem with more than 1k users

2002-09-23 Thread Mark Charette
I've had no problems using qmail-inject and MySQL to send over 100K emails in a day. I doubt it's an MySQL problem unless you've done something drastically wrong; perhaps you're bandwidth limited? -Original Message- From: Research and Development [mailto:[EMAIL PROTECTED]] Hello. I

Re: [PHP] Mail problem with more than 1k users

2002-09-23 Thread Philip J. Newman
: [PHP] Mail problem with more than 1k users This gets discussed quite frequently. My guess is that your ISP *may* be imposing some limitations, but more likely your PHP script is timing out or something similar. Justin on 24/09/02 9:08 AM, Research and Development ([EMAIL PROTECTED]) wrote

[PHP] MAil and mysql help

2002-09-23 Thread D4rks1d3
hi i need to put a mysql_query into an email, best explained.. while ($row=mysql_fetch_rows($base)) //$base=MySQL Query echo tr\n; echo td$row[0]/td\n; echo td$row[1]/td\n; echo td$row[2]/td\n; echo td$row[3]/td\n; well. the result is a table with users an information about them.. i want to

Re: [PHP] Mail problem with more than 1k users

2002-09-23 Thread Peter Janett
PROTECTED] (303)828-9882 - Original Message - From: Justin French [EMAIL PROTECTED] To: Research and Development [EMAIL PROTECTED]; PHP General List [EMAIL PROTECTED] Sent: Monday, September 23, 2002 7:57 PM Subject: Re: [PHP] Mail problem with more than 1k users This gets discussed quite

[PHP] mail() question

2002-09-17 Thread Meltem Demirkus
Hi, I am trying to send an email by using the function mail(). Although I use in a form of mail($to, $subject, $message, $headers), it is giving this error: Failed to Connect So I think I am missing something ... Can anybody help me ?.. thanks alot meltem demirkus -- PHP General Mailing

Re: [PHP] mail() question

2002-09-17 Thread John Wards
Meltem What is you system set up? OS etc? Cheers John Wards SportNetwork.net - Original Message - From: Meltem Demirkus [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, September 17, 2002 2:35 PM Subject: [PHP] mail() question Hi, I am trying to send an email by using

Re: [PHP] mail() question

2002-09-17 Thread Meltem Demirkus
- From: John Wards [EMAIL PROTECTED] To: Meltem Demirkus [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, September 17, 2002 4:40 PM Subject: Re: [PHP] mail() question Meltem What is you system set up? OS etc? Cheers John Wards SportNetwork.net - Original Message - From

Re: [PHP] mail() question

2002-09-17 Thread John Wards
: Re: [PHP] mail() question windows 2000 by the way my whole code is this: ? $msg = Sender Name:\t$_POST[sender_name]\n; $msg .= Sender E-Mail:\t$_POST[sender_email]\n; $msg .= Message:\t$_POST[message]\n\n; $recipient = mailto:[EMAIL PROTECTED]; $subject = Web Site Feedback

Re: [PHP] mail() question

2002-09-17 Thread John Wards
PROTECTED] Sent: Tuesday, September 17, 2002 2:55 PM Subject: Re: [PHP] mail() question how can I do them?..I am sorry maybe I am asking silly questions .It is because I am new on php... thnaks .. meltem - Original Message - From: John Wards [EMAIL PROTECTED] To: Meltem Demirkus

Re: [PHP] mail() question

2002-09-17 Thread John Wards
this in your SMTP seting in php.ini. Also have you restarted apache(or what ever server u are using) since you changed the php.ini file - Original Message - From: Meltem Demirkus [EMAIL PROTECTED] To: John Wards [EMAIL PROTECTED] Sent: Tuesday, September 17, 2002 3:14 PM NCOMP Subject: Re: [PHP

Re: [PHP] Mail system with folders? (Clarification)

2002-09-12 Thread Leif K-Brooks
This message sounds as though I want a system that checks email, etc. That is not what I'm after. What I'm trying to do is make a system where users can mail each other, using a mysql database. Leif K-Brooks wrote: I'm designing a site, and I want to put mail with folders on it. Fairly

[PHP] Mail system with folders?

2002-09-11 Thread Leif K-Brooks
I'm designing a site, and I want to put mail with folders on it. Fairly simply, but I'm not sure what to do for the default folders. I want to have three precreated folders: inbox, trash, and sent. I'm not sure about the best way to do these. Any ideas? -- PHP General Mailing List

Re: [PHP] Mail() function problem

2002-09-11 Thread Alva Chew
Hi, does that mean I can do nothing about it? Alva Pekka Saarinen [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... At 9/10/2002, you wrote: Hi Everyone, I did a simple test with this script: ?php mail([EMAIL PROTECTED], test, this is a test mail

Re: [PHP] Mail system with folders?

2002-09-11 Thread Leonid Mamtchenkov
Dear Leif K-Brooks, Once you wrote about [PHP] Mail system with folders?: I'm designing a site, and I want to put mail with folders on it. Fairly simply, but I'm not sure what to do for the default folders. I want to have three precreated folders: inbox, trash, and sent. I'm not sure

Re: [PHP] Mail() function problem

2002-09-11 Thread David Robley
s script: ?php mail([EMAIL PROTECTED], test, this is a test mail); echo done; ? I run the script from web accounts on different servers. I can receive the test mail from some but not from others. Is there any configurations that I am missing here? My guesses: Many mail

[PHP] Mail() function problem

2002-09-10 Thread Alva Chew
Hi Everyone, I did a simple test with this script: ?php mail([EMAIL PROTECTED], test, this is a test mail); echo done; ? I run the script from web accounts on different servers. I can receive the test mail from some but not from others. Is there any configurations that I am missing here

Re: [PHP] Mail() function problem

2002-09-10 Thread Pekka Saarinen
At 9/10/2002, you wrote: Hi Everyone, I did a simple test with this script: ?php mail([EMAIL PROTECTED], test, this is a test mail); echo done; ? I run the script from web accounts on different servers. I can receive the test mail from some but not from others. Is there any configurations

[PHP] Mail list/message board

2002-09-04 Thread Brian V Bonini
Anyone now of a a PHP mailing list program that has a forum-like interface as well? Somethign that functions similar to yahoo groups if your familiar with that? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] mail() function problem

2002-09-02 Thread Akhmad D. Sembiring
Message- # From: Arul Venkatesh Kandaswamy [mailto:[EMAIL PROTECTED]] # Sent: Saturday, August 31, 2002 17:07 # To: Akhmad D. Sembiring # Subject: Re: [PHP] mail() function problem # # # Hello # # $from = MIME-Version: 1.0\r\n; # $from .= Content-type: text/html; charset=iso-8859-1\r

Re: [PHP] mail() function problem

2002-09-02 Thread Manuel Lemos
Hello, On 09/03/2002 12:19 AM, Akhmad D. Sembiring wrote: Dear Arul friends, thanks for your kind helps, but the problem still exists. the actual problem is that the 2nd mail() function does not ever send the mail, no matter what the destination and the additional header is. is

RE: [PHP] mail() function problem

2002-09-02 Thread Akhmad D. Sembiring
# On 09/03/2002 12:19 AM, Akhmad D. Sembiring wrote: # Dear Arul friends, # # thanks for your kind helps, # but the problem still exists. # # the actual problem is that the 2nd mail() function # does not ever send the mail, no matter what the destination # and the additional

Re: [PHP] mail() function problem

2002-09-02 Thread Manuel Lemos
Hello, On 09/03/2002 12:38 AM, Akhmad D. Sembiring wrote: # thanks for your kind helps, # but the problem still exists. # # the actual problem is that the 2nd mail() function # does not ever send the mail, no matter what the destination # and the additional header is. #

[PHP] mail() function problem

2002-08-31 Thread Akhmad D. Sembiring
Dear All, I have a little problem with mail() function, PHP Code: -- mail($email, Membership ok, $themsg, From: [EMAIL PROTECTED]\r\n); mail([EMAIL PROTECTED], , , From: $email\r\n); -- Why does the second mail()

Re: [PHP] mail() function problem

2002-08-31 Thread Justin French
I think mailing list managers like Yahoo, ezmlm, etc all have features in them to suspect bots and programs from subscribing/posting to the groups. I know I've had trouble subscribing/posting to groups managed by ezmlm... Probably there is a header or two that PHP automatically sets which makes

RE: [PHP] mail() function problem

2002-08-31 Thread Dave at Sinewaves.net
; [EMAIL PROTECTED] Subject: Re: [PHP] mail() function problem I think mailing list managers like Yahoo, ezmlm, etc all have features in them to suspect bots and programs from subscribing/posting to the groups. I know I've had trouble subscribing/posting to groups managed by ezmlm... Probably

[PHP] mail() again...

2002-08-31 Thread Liam MacKenzie
It seems nearly everyone has a problem with this function, probably because it relies on third party software. It doesn't work. That's my problem! I'm using Sendmail as my MTA, not running as a Daemon as I have POP3/SMTP server running on the same machine (eXtremail) I'm starting Sendmail like

[PHP] Mail problem

2002-08-30 Thread Mark Colvin
The script below works on my development web server which sits on our company LAN. When I transfer the script to our isp hosted webserver, the script does not work. I changed 192.168.10.9/iarnaweb/ to read localhost/ for the isp webserver version (I have also tried replacing localhost with the

[PHP] Mail()....

2002-08-30 Thread Brian McGarvie
Is there a way to set the font on a plaintext email? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Mail()....

2002-08-30 Thread Scott Houseman
To: [EMAIL PROTECTED] Subject: [PHP] Mail() Is there a way to set the font on a plaintext email? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Mail()....

2002-08-30 Thread Justin French
: Friday, August 30, 2002 10:45 AM To: [EMAIL PROTECTED] Subject: [PHP] Mail() Is there a way to set the font on a plaintext email? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http

[PHP] Mail/Confirmation Script delivery problems

2002-08-30 Thread Andre Dubuc
After resolving other script problems, a new one has surfaced. The 'Guest Registration/Confirmation' script works as expected. It inserts a random id number, then fowards it to the guest's email address, and awaits confirmation (by clicking on the Confirmation URL). Postfix says that the mail

Re: [PHP] Mail/Confirmation Script delivery problems

2002-08-30 Thread Jason Wong
On Saturday 31 August 2002 03:25, Andre Dubuc wrote: But checking the mailbox of '[EMAIL PROTECTED]' (and three others that I've sent it to) nothing shows up. Now, what's strange, it used to work perfecttly before I made minor changes to $message. I've scanned/debugged/scratched my head but

Re: [PHP] Mail/Confirmation Script delivery problems

2002-08-30 Thread Andre Dubuc
On Friday 30 August 2002 03:38 pm, you wrote: On Saturday 31 August 2002 03:25, Andre Dubuc wrote: But checking the mailbox of '[EMAIL PROTECTED]' (and three others that I've sent it to) nothing shows up. Now, what's strange, it used to work perfecttly before I made minor changes to

Re: [PHP] Mail/Confirmation Script delivery problems

2002-08-30 Thread Jason Wong
On Saturday 31 August 2002 03:52, Andre Dubuc wrote: What 'minor' changes did you make to $message? Does rolling back those changes make it work again? I had just added another text sentence between blah, blah, blah' and 'https://'. And yes, I tried rollbacks to when it worked. Nope -

Re: [PHP] Mail/Confirmation Script delivery problems

2002-08-30 Thread Andre Dubuc
On Friday 30 August 2002 03:57 pm, you wrote: On Saturday 31 August 2002 03:52, Andre Dubuc wrote: What 'minor' changes did you make to $message? Does rolling back those changes make it work again? I had just added another text sentence between blah, blah, blah' and 'https://'.

[PHP] mail and attachments

2002-08-19 Thread Pafo
i got a script that the user signs up on and send a profile to the owners email address but i want to implement a file upland and that the uploaded file should be submitted with the mail.. is this possible in php? i know its possible in cg.. regards patrick -- PHP General Mailing List

Re: [PHP] mail and attachments

2002-08-19 Thread Vehbi Sinan Tunalioglu
If you mean that you want to add attachments to emails it is possible of course... Try Phpmailer... I recommend you to print out a copy of this script and its helper class SMTP so that you can read it and modify (it is not required, guys have done everything well enough) and reuse it. You can

Re: [PHP] mail and attachments

2002-08-19 Thread @ Edwin
Also, somebody has already posted (2 weeks ago?) a similar or related question. I think, the answers given also apply to this question as well. - E If you mean that you want to add attachments to emails it is possible of course... Try Phpmailer... I recommend you to print out a copy of this

Re: [PHP] PHP - mail() function problem

2002-08-18 Thread N. Pari Purna Chand
: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 17, 2002 11:49 PM Subject: Re: [PHP] PHP - mail() function problem On Saturday 17 August 2002 21:08, N. Pari Purna Chand wrote: Hi guys, I am facing a strange problem, php's mail() function is not working when a php

Re: [PHP] PHP - mail() function problem

2002-08-18 Thread N. Pari Purna Chand
: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 17, 2002 11:49 PM Subject: Re: [PHP] PHP - mail() function problem On Saturday 17 August 2002 21:08, N. Pari Purna Chand wrote: Hi guys, I am facing a strange problem, php's mail() function is not working when a php

[PHP] mail/variable help needed..

2002-08-18 Thread eriol
The following is the partial source for an upload form.. I'm having trouble with the mail() function including the actual file name the user is sending instead of /tmp/phpIkRjHq.. I understand that PHP will retain the file in a temporary directory (/tmp/) until it is stored to the path I've

Re: [PHP] mail/variable help needed..

2002-08-18 Thread Jason Wong
On Monday 19 August 2002 07:23, eriol wrote: I understand that PHP will retain the file in a temporary directory (/tmp/) until it is stored to the path I've specified (/uploaded/), but I don't understand how to get it to print the new file name within the email it sends to me.. Currently, it

[PHP] PHP - mail() function problem

2002-08-17 Thread N. Pari Purna Chand
Hi guys, I am facing a strange problem, php's mail() function is not working when a php page is executed thru apache, but the same page which has mail() function is working fine and is sending mails when php is used as a scripting language in shell. I'm using xmail's sendmail and xmail as MTA

Re: [PHP] PHP - mail() function problem

2002-08-17 Thread Jason Wong
On Saturday 17 August 2002 21:08, N. Pari Purna Chand wrote: Hi guys, I am facing a strange problem, php's mail() function is not working when a php page is executed thru apache, but the same page which has mail() function is working fine and is sending mails when php is used as a

[PHP] Mail(): Does it block question?

2002-08-12 Thread Jean-Christian Imbeault
Is the mail() function blocking or non-blocking? Does anyone know how I can make it non-blocking? I don't want to have my script waiting on mail() to return ... Also I read that mail() should not be used for large volumes of mail. How large is large? Can mail() handle a couple of messages per

Re: [PHP] Mail(): Does it block question?

2002-08-12 Thread Rasmus Lerdorf
On UNIX PHP hands the message off to sendmail to be delivered. You want this stuff to happen out of band, it makes no sense to sit there and watch a browser spin while something is off communicating with an smtp server. So, depending on your sendmail configuration, and how you are invoking

Re: [PHP] Mail(): Does it block question?

2002-08-12 Thread Jean-Christian Imbeault
Rasmus Lerdorf wrote: So, depending on your sendmail configuration, and how you are invoking sendmail (see your php.ini file) it will be non-blocking if you tell sendmail to simply queue it. Ok. I'll look into what settings are important in php.ini For high-volume mail delivery, you

Re: [PHP] Mail(): Does it block question?

2002-08-12 Thread Rasmus Lerdorf
Just about any mailing list system that supports subscriber passwords should do. I can't imagine a way they would store these passwords that PHP wouldn't be able to grok with a little 10-minute hack job. -Rasmus On Tue, 13 Aug 2002, Jean-Christian Imbeault wrote: Rasmus Lerdorf wrote:

Re: [PHP] Mail(): Does it block question?

2002-08-12 Thread Manuel Lemos
Hello, On 08/13/2002 01:44 AM, Jean-Christian Imbeault wrote: For high-volume mail delivery, you should be using a dedicated mailing list system. Have PHP send a single message to the list and let the list system do the mass-delivery for you. Right tool for the job and all... Totally

[PHP] mail problems

2002-08-02 Thread Bob Lockie
I can't get mail to work on my system. It always tries to send mail as the user 'nobody' which my Apache 1.3.26 runs as. phpinfo() reports I have the correct path to the php.ini file which specifies it is supposed to send as the user 'bob'. I have sendmail 8.12.5 and PHP 4.2.2 on the same

Re: [PHP] mail problems

2002-08-02 Thread Jason Stechschulte
On Fri, Aug 02, 2002 at 09:34:20PM -0400, Bob Lockie wrote: I can't get mail to work on my system. It always tries to send mail as the user 'nobody' which my Apache 1.3.26 runs as. phpinfo() reports I have the correct path to the php.ini file which specifies it is supposed to send as the

[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 sendmail and

[PHP] mail reading newbie and line lengths...

2002-08-01 Thread Jeff D. Hamann
I'm trying to read messages using php imap functions. I have emails that were sent as simple text but the line lengths are more than x characters. The orginal lines look like... F55232251820029 24006001 440023300 F55232251820029

[PHP] mail () will send to everyone except my own domain

2002-07-31 Thread Gareth
Hello all, Having a real problem. Have written a very simple php email script that I'm testing on our server. The script works fine if I set the 'to' field as any email address but our own - i.e. [EMAIL PROTECTED] This works fine, however as soon as I set the script to email me at the domain to

RE: [PHP] mail () will send to everyone except my own domain

2002-07-31 Thread Tom Ray
Gareth- This sounds more like a sendmail issue to me. I've run into this a few times myself. What's happening is simple, sendmail has a file that it reads generally called domains this file tells sendmail what domains it should be handling mail for. When you submit your form the first thing

[PHP] mail() problems

2002-07-31 Thread dan radom
I'm having provblems with the following script... mail([EMAIL PROTECTED], www form submission, $message, From: $email); ...the variables are being POSTed from a form, which does make it to sendmail. sendmail logs the following... Jul 31 19:32:47 mars sendmail[20605]: g711Wlu20605:

[PHP] Mail Form

2002-07-30 Thread Kerry Gray
Can somebody please tell me why I keep getting this error when using this script... Parse error: parse error in /host/g/i/a/8/b/i/giapai3k.8bit.co.uk/mail.php on line 54 ?php // Read POST request params into global vars $to = $_POST['to']; $from= $_POST['from']; $subject =

Re: [PHP] Mail Form

2002-07-30 Thread Jason Wong
On Wednesday 31 July 2002 03:08, Kerry Gray wrote: Can somebody please tell me why I keep getting this error when using this script... Because what you wrote is invalid PHP code. Parse error: parse error in /host/g/i/a/8/b/i/giapai3k.8bit.co.uk/mail.php on line 54 It's bad enough asking

Re: [PHP] Mail Form

2002-07-30 Thread Kerry Gray
I didn't write it, it was taken from a code library on a site. i have never used php before in my life, hence why I have no idea whats going on, it's more than likely the only thing i'll use php for. Jason Wong [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On

[PHP] PHP mail() problems

2002-07-30 Thread John Williams
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 sendmail and restarted the web

Re: [PHP] PHP mail() problems

2002-07-30 Thread Rasmus Lerdorf
Try rm config.cache, re-configure and try again On Tue, 30 Jul 2002, 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

Re: [PHP] Mail Form

2002-07-30 Thread Bob Lockie
use a decent editor with syntax highlighting What is a free cross platform syntax highlighting editor? Are there any Open Source ones that you know of? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mail Form

2002-07-30 Thread Manuel Lemos
Hello, On 07/31/2002 12:35 AM, Bob Lockie wrote: use a decent editor with syntax highlighting What is a free cross platform syntax highlighting editor? Are there any Open Source ones that you know of? Use kate that comes with KDE. -- Regards, Manuel Lemos -- PHP General Mailing List

Re: [PHP] Mail Form

2002-07-30 Thread Jason Wong
On Wednesday 31 July 2002 11:35, Bob Lockie wrote: use a decent editor with syntax highlighting What is a free cross platform syntax highlighting editor? Are there any Open Source ones that you know of? vim/emacs? -- Jason Wong - Gremlins Associates - www.gremlins.com.hk Open Source

[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

[PHP] Mail issues

2002-07-29 Thread Yves Vrancken
Greetings, I have read up on using mail with PHP because I would like to implement it on my website. I was wondering though, if I should implement safety measures and if so, what kind of measures, under the following conditions: 1. If I want to give visitors the opportunity to sign up for a

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

2002-07-28 Thread Tech Support
true; else return false; } Jim Grill Support Web-1 Hosting http://www.web-1hosting.net - Original Message - From: Dennis Gearon [EMAIL PROTECTED] To: Bob Lockie [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, July 27, 2002 10:54 PM Subject: Re: [PHP] php 'mail()' security What

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

2002-07-28 Thread John Holmes
:[EMAIL PROTECTED]] Sent: Sunday, July 28, 2002 10:57 AM To: Dennis Gearon; Bob Lockie Cc: [EMAIL PROTECTED] Subject: Re: [PHP] php 'mail()' security There is no substitute for good data verification such as strip_tags() or some regular expressions to limit valid input. I also would recomend

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

2002-07-28 Thread Bob Lockie
There is no substitute for good data verification such as strip_tags() or some regular expressions to limit valid input. I also would recomend checking the referrer to be sure someone doesn't hijack you form and try to modify it and submit it from a remote location. Here is an example: if

<    7   8   9   10   11   12   13   14   15   16   >