[PHP] mail program

2004-06-28 Thread Syed Ghouse
Hi all (B (Bi want to send more than 1000 mails from php program at a time.how can i send it and (Bwill the execution of program become slow. (B (Bpls reply to the above ASAP (B (Bsyed

[PHP] mail sent but not received?!

2004-06-25 Thread Bing Du
Hi, I've been pulling my hair out over this problem for a while... ?php $msg = Hi, this is a test; $to = [EMAIL PROTECTED]; $sbj = test message from my.edu; $rev = mail($to,$sbj,$msg); echo mail from my.edu result is $rev; ? -- Since the result of the mail()

Re: [PHP] mail sent but not received?!

2004-06-25 Thread Stut
On Fri, 25 Jun 2004 11:08:26 -0500 (CDT), Bing Du [EMAIL PROTECTED] wrote: Since the result of the mail() returned is 1, the message should have been delivered fine. but I did not get anything. Where can I look for more clues of what the problem might be, like possible log, or turn on some

RE: [PHP] mail sent but not received?!

2004-06-25 Thread Josh Close
] Subject: [PHP] mail sent but not received?! Hi, I've been pulling my hair out over this problem for a while... ?php $msg = Hi, this is a test; $to = [EMAIL PROTECTED]; $sbj = test message from my.edu; $rev = mail($to,$sbj,$msg); echo mail from my.edu result is $rev

Re: [PHP] mail sent but not received?!

2004-06-25 Thread Curt Zirzow
* Thus wrote Bing Du: $rev = mail($to,$sbj,$msg); echo mail from my.edu result is $rev; ? -- Since the result of the mail() returned is 1, the message should have been delivered fine. but I did not get anything. Where can I look for more Negative! $rev will simply let

[PHP] mail

2004-06-15 Thread Chris W
I have upgraded from SUSE 9.0 to 9.1 and now having problems with the mail function. First I was getting an unknown function mail. An suse update fixed that. Now the mail function seems to execute fine but no message ever gets to where I sent it. I looked at the mail log from the postfix

Re: [PHP] mail

2004-06-15 Thread Chris W
[EMAIL PROTECTED] wrote: have you debugged your php code to confirm that a recipient is really getting put on the message? e.g., print out the to: line, or better yet, hard-code a recipient in the code. based on what you find, you'll have a better sense as to whether the issue is on the mta

[PHP] mail() problem

2004-06-02 Thread Rick
Hi All, Does anyone know a good format for sending email using the mail() function that doesnt get stopped by antispam software? I need to send and email from my sever when a new member creates an account, this ive done but my email gets binned straight away? must be the headers? Regards

RE: [PHP] mail() problem

2004-06-02 Thread Larry Brown
PROTECTED] Sent: Wednesday, June 02, 2004 8:35 PM To: [EMAIL PROTECTED] Subject: [PHP] mail() problem Hi All, Does anyone know a good format for sending email using the mail() function that doesnt get stopped by antispam software? I need to send and email from my sever when a new member creates

[PHP] mail command with PHP 4.3.4-1.1 and Fedora Core 1

2004-05-18 Thread C.F. Scheidecker Antunes
Hello all, I have updated an old system to Fedora 1 and php php-4.3.4-1.1. However the mail comand does not work anymore. The php.ini of the original system did not have anything special. Sendmail is not being run locally in this machine. What might be causing it? Thanks in advance, C.F. -- PHP

[PHP] php mail() scaleability

2004-04-25 Thread Josh Klobe
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? -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[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,

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

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

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

2004-04-25 Thread Jason Sheets
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 be a result of a socket being opened

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=14catname=Mail This is a bit of an overkill as it attempts to provide an inefficient

[PHP] Mail Functions on File

2004-04-14 Thread Daryl Meese
Hello all, Is it possible to use the imap functions on a file instead of opening a mail box via imap_open? I have create virtual users and am having a large amount of difficulty getting authentication to work. Since they will be checking their email through our software, and have already

[PHP] Mail header problem

2004-04-06 Thread Daryl Meese
Hello all, When I use the PHP mail function to send emails, with a header of From:[EMAIL PROTECTED]; bounced and otherwise undeliverable messages come back to the user www, not the user I indicated the mail was from. Is this a PHP or MTA issue? Is there something I can do about it? TIA, Daryl

Re: [PHP] Mail header problem

2004-04-06 Thread Curt Zirzow
* Thus wrote Daryl Meese ([EMAIL PROTECTED]): Hello all, When I use the PHP mail function to send emails, with a header of From:[EMAIL PROTECTED]; bounced and otherwise undeliverable messages come back to the user www, not the user I indicated the mail was from. Is this a PHP or MTA issue

[PHP] Mail sending from nobody to nobody...

2004-04-05 Thread Jonathan Villa
For some reason mail is being sent from nobody to nobody every time. I have tried hardcoding the sendmail path, which is the default anyway, and it still doesn't work? Has anyone encountered this before? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Mail sending from nobody to nobody...

2004-04-05 Thread hitek
Details? How are you calling the mail function? At 11:59 PM 4/4/2004, Jonathan Villa wrote: For some reason mail is being sent from nobody to nobody every time. I have tried hardcoding the sendmail path, which is the default anyway, and it still doesn't work? Has anyone encountered this before?

Re: [PHP] Mail sending from nobody to nobody...

2004-04-05 Thread Jonathan Villa
$from = From: .$email.\n; $from .= Reply-to: .$email.\n; $message = The following person has been added to the Mailing List.\n\n; $message .= $name. (.$email.) from .$city. has been added to the mailing list.; if(mail([EMAIL PROTECTED],Added To Mailing List,stripslashes($message),$from) == false)

Re: [PHP] Mail sending from nobody to nobody...

2004-04-05 Thread hitek
Try getting rid of the stripslashes, or if you need to remove them, add an additional \n to the message after the strip slashes, like so: if(mail([EMAIL PROTECTED],Added To Mailing List,stripslashes($message).\n,$from) == false) die('failed'); Also, see

Re: [PHP] mail() question

2004-04-02 Thread Aidan Lister
It's quite easy to remove access to the mail function, simply put mail in your php.ini under disable_functions Hernan Marino [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] sorry. lazy me. there is auto_prepend_file in php.ini I'll see if it works. Thanks! On Fri, 2 Apr 2004 03:51:18

[PHP] mail() question

2004-04-01 Thread Hernan Marino
Hello. My users can send email from their web pages using mail(). But the email is sent from [EMAIL PROTECTED], I dont want them to attempt to send bulk, so I wonder if there is any way to identify the system user sending the email. I use postfix, and I know that postfix gets connected from user

Re: [PHP] mail() question

2004-04-01 Thread Hernan Marino
Thanks for your answer. Don't you know if there is a way to redefine the mail() function in the php.ini file without touching the source code. Something like prepending a file for every script parsed in the server and redefine there several functions or something like that. Thanks! On Fri,

Re: [PHP] mail() question

2004-04-01 Thread Hernan Marino
sorry. lazy me. there is auto_prepend_file in php.ini I'll see if it works. Thanks! On Fri, 2 Apr 2004 03:51:18 -0300, Hernan Marino wrote: Thanks for your answer. Don't you know if there is a way to redefine the mail() function in the php.ini file without touching the source code. Something

[PHP] Mail Delivery (failure php-general@lists.php.net)

2004-03-29 Thread jason
If the message will not displayed automatically, follow the link to read the delivered message. Received message is available at: www.lists.php.net/inbox/php-general/read.php?sessionid-27800

[PHP] Mail a PHP

2004-03-25 Thread Federico Petronio
Hello... I reclently upgraded the OpenSSL to stay ahead of some new vulnerabilities dicovered in 0.9.7c, the new installation (0.9.7d) replaced the libssl.so and libcrypto.so files. Aftes the upgrade I restarted Apahce (and PHP) but the phpinfo function still shows the old versión of openssl in

[PHP] mail headers

2004-03-20 Thread Will
Hello all, I searched for this but did not find what I was looking for. I want to send a file from a directory, i know how to do that in txt but I would like to send a doc or rtf document. Is the header like this: $headers = Content-Type: multipart/mixed; Thanks, ~WILL~ -- PHP General

Re: [PHP] mail() to own domain not working

2004-03-18 Thread Gerard L Petersen
gets routed to the correct host according to the mx records on the DNS :) - Original Message - From: Raditha Dissanayake [EMAIL PROTECTED] To: Gerard L Petersen [EMAIL PROTECTED] Cc: Php-General [EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 6:52 PM Subject: Re: [PHP] mail() to own

[PHP] mail() to own domain not working

2004-03-17 Thread Gerard L Petersen
Hi all Im having a problem with sending mails using the mail function to my own domain. Mails to any other domain works perfectly. Also our mail server sitting on a different machine. Any ideas how to fix this?

Re: [PHP] mail() to own domain not working

2004-03-17 Thread Tristan . Pretty
Ooo, I had this recently when we moved to beamhost.co.uk I'll mail them and ask them what they did to fix it... I'll be back... Gerard L Petersen [EMAIL PROTECTED] 17/03/2004 14:59 To Php-General [EMAIL PROTECTED] cc Subject [PHP] mail() to own domain not working Hi all Im having

Re: [PHP] mail() to own domain not working

2004-03-17 Thread Tristan . Pretty
[EMAIL PROTECTED] Subject Re: [PHP] mail() to own domain not working Ooo, I had this recently when we moved to beamhost.co.uk I'll mail them and ask them what they did to fix it... I'll be back... Gerard L Petersen [EMAIL PROTECTED] 17/03/2004 14:59 To Php-General [EMAIL PROTECTED] cc

Re: [PHP] mail() to own domain not working

2004-03-17 Thread Tristan . Pretty
Petersen [EMAIL PROTECTED], Php-General [EMAIL PROTECTED] Subject Re: [PHP] mail() to own domain not working Well, they replied: Do you mean the email is not working at the moment or you\'re asking for the solution we did last time? We modified your code and changed @ to \\@ within the mail header

Re: [PHP] mail() to own domain not working

2004-03-17 Thread Raditha Dissanayake
Gerard L Petersen wrote: Hi all Im having a problem with sending mails using the mail function to my own domain. Mails to any other domain works perfectly. Also our mail server sitting on a different machine. Any ideas how to fix this? If you are getting any php related error messages please

RE: [PHP] mail() to own domain not working

2004-03-17 Thread Jason Merrique
the server specified by your domain's MX. Cheers, Jason -Original Message- From: Gerard L Petersen [mailto:[EMAIL PROTECTED] Sent: 17 March 2004 16:07 To: Jason Merrique Subject: Re: [PHP] mail() to own domain not working No thats a different server. - Original Message - From: Jason

[PHP] Mail

2004-03-14 Thread Will
Hello All, I am having a problem with sending a reply from a form. It is giving me a 550 error: There is no valid sender in any header line. My form is: ? include (inc/setup.php); // Mail reply to Orginial poster $recipient .= [EMAIL PROTECTED], $_POST[email]\n; $mailheaders .= To:

Re: [PHP] Mail

2004-03-14 Thread Jason Davidson
Check the manual to be sure, but it appears that you have the arguments for the mail function in the wrong order . mail(to, subject, msg, headers) ... i beleive is the correct order. Jason Will [EMAIL PROTECTED] wrote: Hello All, I am having a problem with sending a reply from a form. It

RE: [PHP] Mail

2004-03-14 Thread Will
Thank you very much!!! That was it ~WILL~ -Original Message- From: Jason Davidson [mailto:[EMAIL PROTECTED] Sent: Sunday, March 14, 2004 2:40 PM To: Will Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Mail Check the manual to be sure, but it appears that you have the arguments

[PHP] Trke php mail grup...

2004-03-12 Thread EMIN GONAL
SELAMLAR Trke php mail grubumuza katlmak isteyen arkadalar aadaki mail adresine bo bir mail gndererek ye olabilirler, gelen confirm mesajn hibir ey yazmadan direkt olarak reply ediniz... [EMAIL PROTECTED] veya webden kayt olmak isterseniz http://groups.yahoo.com/group/turkphp/ adresine

[PHP] mail() and passwords

2004-03-09 Thread Will
How do I modify the following to except a password for the SMTP server? [mail function] SMTP = localhost sendmail_from = [EMAIL PROTECTED] Please help!! Thanks in advance! ~WILL~ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mail() and passwords

2004-03-09 Thread tom meinlschmidt
I mean the only way is to use existing classes for sending emails via smtp socket or to write your own one. tom On Tue, 9 Mar 2004 03:37:33 -0500 Will [EMAIL PROTECTED] wrote: How do I modify the following to except a password for the SMTP server? [mail function] SMTP = localhost

Re: [PHP] Mail Headers

2004-03-08 Thread Miguel J. Jimnez
You can view the source from an email message with Outlook or Thunderbird, and it will show headers and all that stuff... --- Miguel J. Jiménez ISOTROL, S.A. (Área de Internet) Avda. Innovación nº1, 3ª - 41020 Sevilla (ESPAÑA) [EMAIL PROTECTED] TLFNO. 955036800 ext. 111 -- PHP General Mailing

Re: [PHP] Mail fifth parameter

2004-03-07 Thread Raditha Dissanayake
Hi, I am no expert on sendmail configuration but my little knowledge tells me sendmail shouldn't change any headers that are passed to it if it is configured properly. joel boonstra wrote: On Sun, Mar 07, 2004 at 09:51:28AM +0600, Raditha Dissanayake wrote: It's an often overlooked fact

[PHP] Mail Function

2004-03-07 Thread Will
Hello All, I have a question. I installed PHP on a windows XP machine. When I try to send a form it says: Warning: mail(): sendmail_from not set in php.ini or custom From: header. My header are as follows: ? require (admin/inc/setup.php); $subject = FeedBack From Site; $msg = Senders Name:

[PHP] Mail fifth parameter

2004-03-06 Thread Enrico Comini
I have to send a email to a server where is very important the Return-Path to match the identity. If I use mail([EMAIL PROTECTED], object, $message,From: [EMAIL PROTECTED]. Reply-To:[EMAIL PROTECTED] .Return-Path: [EMAIL PROTECTED]); I see in the received message that return-path Is not that

Re: [PHP] Mail fifth parameter

2004-03-06 Thread Marek Kilimajer
Enrico Comini wrote: I have to send a email to a server where is very important the Return-Path to match the identity. If I use mail([EMAIL PROTECTED], object, $message,From: [EMAIL PROTECTED]. Reply-To:[EMAIL PROTECTED] .Return-Path: [EMAIL PROTECTED]); I see in the received message that

Re: [PHP] Mail fifth parameter

2004-03-06 Thread Raditha Dissanayake
It's an often overlooked fact that you can pass additional headers in the fourth parameter. I do belive you should use \n and not \r\n then your code will look like mail([EMAIL PROTECTED], object, $message, From: [EMAIL PROTECTED] . Reply-To:[EMAIL PROTECTED].

Re: [PHP] Mail fifth parameter

2004-03-06 Thread Jason Davidson
\r\n is good :) J Raditha Dissanayake [EMAIL PROTECTED] wrote: It's an often overlooked fact that you can pass additional headers in the fourth parameter. I do belive you should use \n and not \r\n then your code will look like mail([EMAIL PROTECTED], object, $message, From:

[PHP] Mail class to send several e-mails within one smtp connection

2004-02-29 Thread Juergen Mueller pro.vider.de GmbH
Hello, does anybody know a simply mailing function, which does open a smtp connection to an mailserver, sends say 20 mails with different bodies to that mailserver and than closes the smtp connection again? As I understand the standard php mail() function, that it is doing quit

RE: [PHP] Mail class to send several e-mails within one smtp connection

2004-02-29 Thread Axiom
-Original Message- From: Juergen Mueller pro.vider.de GmbH [mailto:[EMAIL PROTECTED] Sent: Sunday, February 29, 2004 12:02 PM To: [EMAIL PROTECTED] Subject: [PHP] Mail class to send several e-mails within one smtp connection Hello, does anybody know a simply mailing function

[PHP] mail()

2004-02-16 Thread Juan Torres
Hi, I have a problem with mail() function. I'm using PHP with Windows 2000 Professional and Internet Information Server 5.0. My php code is: mail([EMAIL PROTECTED], Prueba Envio Email PHP, Linea 1\nLinea 2\nLinea 3); And my browser shows: Warning: mail(): SMTP server response: 550 5.7.1 Unable

Re: [PHP] mail()

2004-02-16 Thread Chris Hayes
PHP mail requests from your site number without this limitation. If you pay for the server, they should allow that. If your own computer is running all day, consider installing your own SMTP server (make sure to limit the IP addresses it accepts or you will be abused by spammers yourself

[PHP] mail list/outbound email

2004-01-31 Thread Dan McCullough
Looking for suggestions/thoughts/comments about mail list/outbound email/newsletters. I just bought some software to help my wife's clients send outbound email campaigns (opt-in/opt-out) not spam. There have been several issues right off the hop. Can anyone think of components that can be used

[PHP] Mail Transaction Failed

2004-01-26 Thread chuck
The message contains Unicode characters and has been sent as a binary attachment. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Mail Transaction Failed

2004-01-26 Thread chuck
The message contains Unicode characters and has been sent as a binary attachment. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mail Transaction Failed

2004-01-26 Thread Tom Rogers
Hi, Tuesday, January 27, 2004, 4:32:46 PM, you wrote: cho The message contains Unicode characters and has been sent as a binary attachment. Be careful this crap is a virus -- regards, Tom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Mail function problem

2004-01-10 Thread Rolf Berkenbosch
Hi All, I have a big problem with the mail function in PHP. I have installed PHP 4.3.3. But no email where send With the mail function. If I run this script as root. There Is no problem.. What do I need to change?? Thanks, Rolf

[PHP] mail()

2004-01-06 Thread Anthony Ritter
Using php/apache/mysql I am testing an mail script. The script has a .html form which receives the text input and then a .php script to execute the variables in a mail() function. When I publish both files - the .html and .php - to my ISP's server and enter the data and hit submit I receive an

[PHP] MAIL doesn't work anymore

2004-01-05 Thread Monty
Shouldn't this work in PHP 4.3.2? ... mail('[EMAIL PROTECTED]', 'Subject', 'Body of email'); This very simple use of the mail command produces an error by Sendmail: dsn=5.6.0, stat=Data format error, which must mean there is a bug in this function. Does anyone know why this won't work

Re: [PHP] MAIL doesn't work anymore

2004-01-05 Thread Rolf Brusletto
Monty wrote: Shouldn't this work in PHP 4.3.2? ... mail('[EMAIL PROTECTED]', 'Subject', 'Body of email'); This very simple use of the mail command produces an error by Sendmail: dsn=5.6.0, stat=Data format error, which must mean there is a bug in this function. Does anyone know why this

RE: [PHP] mail question (mime)

2003-12-17 Thread Bill Green
Thanks for your replies. Figured it out, just blind. The $headers were written correctly (except for \r\n at end of lines though \n seems to work in this case). The problem was in the call to the boundary, the boundary has to start with -- outside the quoted string definition of the boundary, and

[PHP] mail question (mime)

2003-12-16 Thread Bill Green
Greetings all. In an effort to understand more about mime mail with php, I'm writing a little function to send a multipart/alternative encoded mime mail from a browser interface. I know you guys have answered these types of questions many times, but I've googled and research til I'm blue. I'm

[PHP] mail question (mime)

2003-12-16 Thread Bill Green
Greetings all. (hope this isn't a second post, first try seemed to fail) In an effort to understand more about mime mail, I'm writing a little function to send a multipart/alternative encoded mime mail from a browser interface. I know you guys have answered these types of questions many times,

RE: [PHP] mail question (mime)

2003-12-16 Thread Chris
) The final boundary must end in -- as well as start with it so: $message .=--i0o9u8h7g65v; should be $message .=--i0o9u8h7g65v--; Chris -Original Message- From: Bill Green [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 16, 2003 8:19 AM To: [EMAIL PROTECTED] Subject: [PHP] mail question

[PHP] mail() issue

2003-12-10 Thread Tom Ray [List]
I have an odd issue with mail(). I was working on a project at my office for some time and we did everything with php and mysql. I stepped away from the project for a bit but when I left all my scripts, such as password retrieval and a few others that used the mail() function were working. Now

[PHP] PHP Mail handler?

2003-11-19 Thread Jacques Roux
Dear All 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? Regards Jacques -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP Mail handler?

2003-11-19 Thread Jay Blanchard
[snip] 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? [/snip] The manual works fine for most http://www.php.net/mail -- PHP General Mailing List (http://www.php.net/) To

[PHP] mail -f option for removing nobody@localhost Return-Path

2003-11-19 Thread Glenn Gasner
Here is the code I'm using trying to replace [EMAIL PROTECTED] with my email address when I use the PHP mail() function to send a message: $headers=From: Glenn Gasner [EMAIL PROTECTED]\r\n .Reply-To: Glenn Gasner [EMAIL PROTECTED]\r\n .Return-Path: Glenn Gasner [EMAIL PROTECTED]; mail([EMAIL

[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:

Re: [PHP] mail -f option for removing nobody@localhost Return-Path

2003-11-19 Thread Curt Zirzow
* Thus wrote Glenn Gasner ([EMAIL PROTECTED]): Here is the code I'm using trying to replace [EMAIL PROTECTED] with my email address when I use the PHP mail() function to send a message: $headers=From: Glenn Gasner [EMAIL PROTECTED]\r\n .Reply-To: Glenn Gasner [EMAIL PROTECTED]\r\n .Return

[PHP] mail() in windows (again!)

2003-11-13 Thread Joao Andrade
Hi, First of all, how can I send a message to this list as the first dealing with a subject, like a question (I guess this is called a thread)? Well, I wanted PHP to send an e-mail for me. I read in the documentation that the mail() functions uses the sendmail aplication. I've also

Re: [PHP] mail() in windows (again!)

2003-11-13 Thread Raditha Dissanayake
that the mail() functions uses the sendmail aplication. I've also heard this 'sendmail' won't work with windows (Windows rulez!(just to piss those linux guys off!)). If you were on linux you wouldn't have to send this mail. What you can do is to use your ISP's mail server. (which is most

Re: [PHP] Mail Delivery Acknowledgement

2003-11-04 Thread John Nichel
[EMAIL PROTECTED] wrote: Thank you for contacting me Your e-mail has been forwarded to the appropriate person Mr. Imran Asghar. We welcome all comments and suggestions. Due to the high volume of e-mails received, not all e-mails are responded to directly. All e-mails that are

[PHP] Mail Delivery Acknowledgement

2003-11-03 Thread imran
Thank you for contacting me Your e-mail has been forwarded to the appropriate person Mr. Imran Asghar. We welcome all comments and suggestions. Due to the high volume of e-mails received, not all e-mails are responded to directly. All e-mails that are responded to are handled in the order

[PHP] Mail Delivery Acknowledgement

2003-11-03 Thread imran
Thank you for contacting me Your e-mail has been forwarded to the appropriate person Mr. Imran Asghar. We welcome all comments and suggestions. Due to the high volume of e-mails received, not all e-mails are responded to directly. All e-mails that are responded to are handled in the order

[PHP] Mail Delivery Acknowledgement

2003-11-03 Thread imran
Thank you for contacting me Your e-mail has been forwarded to the appropriate person Mr. Imran Asghar. We welcome all comments and suggestions. Due to the high volume of e-mails received, not all e-mails are responded to directly. All e-mails that are responded to are handled in the order

Re: [PHP] mail() another example - error

2003-11-02 Thread Boyan Nedkov
This time your script is ok, the connection to the SMTP server is established, but because the host name of the machine that executes your php script is not a valid host name in the SMTP server's local network, the server refuses to accept your request for security reasons (smtp relaying

[PHP] mail function error - win32

2003-11-01 Thread orlandopozo
I try to send from my pc a mail with the function mail(), but if doesn't work, I have tried several time, but nothing, I don't know what could be, because the same script work well in a remote host. in my php.ini, I put: [mail function] ; For Win32 only. SMTP = mail.serbis.com I also put

[PHP] mail function error - win32

2003-11-01 Thread orlandopozo
I try to send from my pc a mail with the function mail(), but if doesn't work, I have tried several time, but nothing, I don't know what could be, because the same script work well in a remote host. in my php.ini, I put: [mail function] ; For Win32 only. SMTP = mail.serbis.com I also put

RE: [PHP] mail function error - win32

2003-11-01 Thread Julien Wadin
When you use the mail function, you must give the first argument. The 'to' is not in the headers Try this, it should work -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Envoyé : samedi 1 novembre 2003 22:11 À : [EMAIL PROTECTED] Objet : [PHP] mail function error

[PHP] mail() another example - error

2003-11-01 Thread orlandopozo
I use this script: ? /** in php.ini - localhost [mail function] SMTP = mail.serbis.com; only win32 sendmail_from = [EMAIL PROTECTED]; */ $msg = this is a test; $senderFrom = [EMAIL PROTECTED]; $receiverTo = [EMAIL PROTECTED]; $subject = test of the mail function; $mailHeaders = From:

[PHP] mail() another example - error

2003-11-01 Thread orlandopozo
I use this script: ? /** [mail function] ; For Win32 only. SMTP = ojpp.myftp.org ; For Win32 only. sendmail_from = [EMAIL PROTECTED] */ $msg = this is a test; $senderFrom = [EMAIL PROTECTED]; $receiverTo = [EMAIL PROTECTED]; $subject = test of the mail function; $mailHeaders = From:

[PHP] mail() another example - error

2003-11-01 Thread orlandopozo
I use this script: ? /** [mail function] ; For Win32 only. SMTP = ojpp.myftp.org ; For Win32 only. sendmail_from = [EMAIL PROTECTED] */ $msg = this is a test; $senderFrom = [EMAIL PROTECTED]; $receiverTo = [EMAIL PROTECTED]; $subject = test of the mail function; $mailHeaders = From:

[PHP] Mail() Function on Cobalt Raq 4

2003-10-22 Thread Peter Graber
Using a Cobalt Raq 4 w/php 4.3.1. The sendmail_path is : /usr/sbin/sendmail -t -iThis seems to be right. Can't get mail to send. Script works on other servers without fail. PHP Info here: http://www.ncafp.com/cgi-bin/phpInfo.php -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Mail() Function on Cobalt Raq 4

2003-10-22 Thread Mike Morton
Have you checked the mail logs (should be /var/log/mail.log or something similar) you could be getting errors from the mail server rather than the php side. I have had it where I thought that it was php but it turned out be a local relaying error )On 10/22/03 10:16 AM, Peter Graber [EMAIL

Re: [PHP] mail() php in message

2003-10-13 Thread Onno Kuipers
Chris Hayes wrote: message of the mail. I know how the to put html in the message: $message = ' in stead of print td $gebruikerbooks /td; do $message .= td $gebruikerbooks /td; A little clarification: * Just instead of echoing it directly to the browser, add it to your variable

Re: [PHP] mail() php in message

2003-10-13 Thread Manuel Lemos
Hello, On 10/13/2003 05:02 AM, Onno Kuipers wrote: My server runs PHP and Mysql. Normaly I can put some php in my .php-files wich will create a html file for the clients. (you all know this of course). My question now is: How can I put that html (created with PHP) in the message off the mail.

Re: [PHP] mail() php in message

2003-10-13 Thread Onno Kuipers
Manuel Lemos wrote: Hello, On 10/13/2003 05:02 AM, Onno Kuipers wrote: My server runs PHP and Mysql. Normaly I can put some php in my .php-files wich will create a html file for the clients. (you all know this of course). My question now is: How can I put that html (created with PHP) in the

Re: [PHP] mail() php in message

2003-10-13 Thread Onno Kuipers
Manuel Lemos wrote: Hello, On 10/13/2003 05:02 AM, Onno Kuipers wrote: My server runs PHP and Mysql. Normaly I can put some php in my .php-files wich will create a html file for the clients. (you all know this of course). My question now is: How can I put that html (created with PHP) in the

Re: [PHP] mail() php in message

2003-10-13 Thread Marek Kilimajer
Onno Kuipers wrote: thanx a lot! I think this will help. . oops works only with PHP 4... and I ... euh PHP3.. Is there another method to do this before I even think of upgrading? You can write your own. But I would upgrade. -- PHP General Mailing List

Re: [PHP] mail() php in message

2003-10-13 Thread Manuel Lemos
Hello, On 10/13/2003 06:13 AM, Onno Kuipers wrote: My server runs PHP and Mysql. Normaly I can put some php in my .php-files wich will create a html file for the clients. (you all know this of course). My question now is: How can I put that html (created with PHP) in the message off the mail.

[PHP] mail() php in message

2003-10-12 Thread Onno Kuipers
Hi, is there a way to create a mail (with the mail() function) that contains php in the message. Like: ?php $to = [EMAIL PROTECTED]; $subject = a subject; $message = I WANT TO PUT SOME PHP IN HERE TO CREATE A TABLE IN THE MESSAGE: $columnbooks =

Re: [PHP] mail() php in message

2003-10-12 Thread Matthias Wulkow
Hallo Onno, am Sonntag, 12. Oktober 2003 um 20:07 hast Du Folgendes gekritzelt: OK Hi, OK is there a way to create a mail (with the mail() function) that contains OK php in the message. OK Like: OK ?php OK $to = [EMAIL PROTECTED]; OK $subject = a subject; OK $message = OK I WANT TO

Re: [PHP] mail() php in message

2003-10-12 Thread Onno Kuipers
Matthias Wulkow wrote: Hallo Onno, am Sonntag, 12. Oktober 2003 um 20:07 hast Du Folgendes gekritzelt: OK Hi, OK is there a way to create a mail (with the mail() function) that contains OK php in the message. OK Like: OK ?php OK $to = [EMAIL PROTECTED]; OK $subject = a subject; OK

Re: [PHP] mail() php in message

2003-10-12 Thread Chris Hayes
message of the mail. I know how the to put html in the message: $message = ' in stead of print td $gebruikerbooks /td; do $message .= td $gebruikerbooks /td; A little clarification: * Just instead of echoing it directly to the browser, add it to your variable $message. * $message.='bla'; is

[PHP] mail(): can it reply with quoted text?

2003-10-01 Thread Chris
I wrote an ultra basic mail interface as a part of my client's customer administration area to handle emails. Basically, the standard email form gets stored in a database, and when they respond to the help request, they fill out the form and PHP emails the message. Now, they want to have the

[PHP] mail() and Sender: field

2003-09-28 Thread Adam Whitehead
Hi All I'm having a problem using the mail() function of PHP. It seems to vary between platforms (ie. this problem doesn't not occur on my Win32 development platform, but does on my Linux production server). I'm sending mail using the mail() function and including a From: and Reply-To: header.

Re: [PHP] mail() and Sender: field

2003-09-28 Thread Jason Wong
On Sunday 28 September 2003 14:26, Adam Whitehead wrote: I'm having a problem using the mail() function of PHP. It seems to vary between platforms (ie. this problem doesn't not occur on my Win32 development platform, but does on my Linux production server). I'm sending mail using the mail()

<    3   4   5   6   7   8   9   10   11   12   >