Re: [PHP] mail() limit?

2001-04-08 Thread Manuel Lemos
Hello Christian, On 07-Apr-01 07:29:27, you wrote: On Friday 06 April 2001 22:47, you wrote: Hi, Does anyone know if and what the limit is of bcc that can be used in the mail() function? Hundreds, thousands? If you wonder about approaching such a limit you'll be better off with a real

Re: [PHP] mail() limit? Use aliases table [typo]

2001-04-08 Thread Lindsay Adams
Sorry, this: BTW, the format for an alias file is: addr1, addr2, addr3 OR should read ... The format for a mailing list file is: ... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

Re: [PHP] mail() limit? Use aliases table

2001-04-08 Thread Manuel Lemos
Hello Lindsay, On 08-Apr-01 16:14:00, you wrote: If you have access to /etc/aliases, this makes your code much easier It works but it requires that you have root permissions and use the real sendmail program and not another wrapped mailing system. For bulk mailing, like for mailing lists,

Re: [PHP] mail() limit? Use aliases table

2001-04-08 Thread Lindsay Adams
No, I use my manual lists without a problem. If I ever have to install on a system that does not allow normal use of an alias table by a normal user, then I might try something else. But under my resellers account on AIT, I get to do whatever I want with aliases, and the lists work find =) I

Re: [PHP] mail() limit? Use aliases table

2001-04-08 Thread Manuel Lemos
Hello Lindsay, On 08-Apr-01 20:02:57, you wrote: No, I use my manual lists without a problem. If I ever have to install on a system that does not allow normal use of an alias table by a normal user, then I might try something else. But under my resellers account on AIT, I get to do whatever I

Re: [PHP] mail() limit?

2001-04-07 Thread Christian Reiniger
On Friday 06 April 2001 22:47, you wrote: Hi, Does anyone know if and what the limit is of bcc that can be used in the mail() function? Hundreds, thousands? If you wonder about approaching such a limit you'll be better off with a real mailinglist manager (mailman, listar, ezmlm, ...) --

RE: [PHP] mail() limit?

2001-04-06 Thread Boaz Yahav
IMHO, it's not the mail() limit but rather the SMTP protocol limit and it seems to vary between different OS's. I wouldn't go for more than 50 emails in one Bcc. You need to take into consideration that the email length vary and that there may be 50 emails that sum up to 500 chars and some can

Re: [PHP] Mail() Speed?

2001-04-05 Thread Plutarck
Many people seem to sware that opening a direct connection to sendmail is faster than using the mail function, and often avoids errors more often. Your mileage may vary, but I gather that a direct connection is faster, though not by much so don't get too concerned, than using mail. So feel free

Re: [PHP] mail() and a Data format error

2001-04-02 Thread Richard Lynch
Those quotes in the php.ini file matter. sendmail_path = "/usr/sbin/sendmail -t -i" Without the quotes, everything after the space is ignored. -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time:

Re: [PHP] mail(): \r\n gives extra empty line between each line in Outlook

2001-04-01 Thread Erick Papadakis
I am not sure what you want to do, but you could try this: $myText = nl2br($dataFromSubmittedTextBox); Then $myText will have the correct values. Cheers --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.237 / Virus

Re: [PHP] mail(): carriage return required??

2001-03-23 Thread Christian Reiniger
On Friday 23 March 2001 01:49, you wrote: Use \r\n for email line breaks. Should I write a function that replace any corrance of '\n' with '\r\n' in a string myself? Hard to believe that the PHP guys haven't encountered this before and didn't write some PHP function to do this for us, not?

RE: [PHP] mail(), how can one specify from ?

2001-03-22 Thread David Smith
$headers .= "From: David Smith [EMAIL PROTECTED]\n"; mail($recipient, $subject, $message, $headers); -Original Message- From: Richard [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 22, 2001 1:00 PM To: [EMAIL PROTECTED] Subject: [PHP] mail(), how can one specify from ? Greetings.

Re: [PHP] mail(): carriage return required??

2001-03-22 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Eelco de Vries) wrote: "this is line 1 this is line 2 this the 3rd etc etc" I read the mail fine in my hotmail.com account, but when I read that same mail in my MS Outlook client the mail is one long line of text: "this is line 1 this

RE: [PHP] mail(): carriage return required??

2001-03-22 Thread Eelco de Vries
I read the mail fine in my hotmail.com account, but when I read that same mail in my MS Outlook client the mail is one long line of text: "this is line 1 this is line 2 this the 3rd etc etc" I understand from this difference in layout that the 'carriage return' is required. Is there

RE: [PHP] mail() question

2001-03-20 Thread Altunergil, Oktay
it's not /n .. it's \n -Original Message- From: Wade DeWerff [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 20, 2001 2:37 PM To: [EMAIL PROTECTED] Subject: [PHP] mail() question is there a way to do this in a mail() ? I need to add the $Phone and $Email variables too the $message, but

Re: [PHP] mail() question

2001-03-20 Thread Clayton Dukes
$message .= $Info; $message .="br"; $message .=$Phone; $message .="br"; $message .=$Email; This should append everything, but I could be wrong, I'm no Guru :-) Clayton Dukes - Download Free Essays, Term Papers and Cisco

Re: [PHP] mail() question

2001-03-20 Thread CC Zona
In article 00be01c0b175$1cee4080$[EMAIL PROTECTED], [EMAIL PROTECTED] ("Wade DeWerff") wrote: is there a way to do this in a mail() ? I need to add the $Phone and $Email variables too the $message, but I need to format it so that it is on a new line in the emailI tried using br and /n,

RE: [PHP] mail() question

2001-03-20 Thread Altunergil, Oktay
Dukes [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 20, 2001 2:37 PM To: Wade DeWerff; [EMAIL PROTECTED] Subject: Re: [PHP] mail() question $message .= $Info; $message .="br"; $message .=$Phone; $message .="br"; $message .=$Email; This should append everything, but I could b

Re: [PHP] mail() implementation problem

2001-03-16 Thread Mathieu Arnold
Manuel Lemos wrote: Hello, Mathieu Arnold wrote: Hi The actual implementation of the mail fonction use sendmail -t and relies on sendmail to parse the headers to get the recipients. It would be great if it was possible to switch from this way of using sendmail to a more

Re: [PHP] mail() implementation problem

2001-03-16 Thread Tim Frank
) wrote regarding Re: [PHP] mail() implementation problem: Manuel Lemos wrote: Hello, Mathieu Arnold wrote: Hi The actual implementation of the mail fonction use sendmail -t and relies on sendmail to parse the headers to get the recipients. It would be great

RE: [PHP] mail() function how???

2001-03-15 Thread Knotek Vlastimil
Hi You mast have some mail server installed, or an access to one. Then you have to configure your PHP.ini file: 1. If you are running under Windows: [mail function] SMTP= address of the mail server (mailserver.com or IP address) sendmail_from = [EMAIL

Re: [PHP] mail() implementation problem

2001-03-15 Thread Manuel Lemos
Hello, Mathieu Arnold wrote: Hi The actual implementation of the mail fonction use sendmail -t and relies on sendmail to parse the headers to get the recipients. It would be great if it was possible to switch from this way of using sendmail to a more classic sendmail -f sender rcpt it

RE: [PHP] MAIL And PHP Question

2001-03-12 Thread Chris Cocuzzo
I can't give you an exact answer, such as an implementation...but I would think it would have to do with opening a POP/SMTP socket connection. I know there is a class that can connect directly to SMTP on this website: http://phpclasses.upperdesign.com/ hope that helps, Chris -Original

Re: [PHP] MAIL And PHP Question

2001-03-12 Thread Chris Adams
On 12 Mar 2001 21:47:44 -0800, James Lamb [EMAIL PROTECTED] wrote: Can PHP talk directly to the SMTP server, i know that there is a mail() function but this cannnot specify the reply-to and from addresses easily. Yes, but it's less work to specify reply-to and from using mail(). If you do want

RE: [PHP] mail problem

2001-03-05 Thread Peter Houchin
Now if i include $headers .= "Cc: [EMAIL PROTECTED] " . " , "; $headers .= "[EMAIL PROTECTED]\n"; My page won't load at all apart from the first include i have on my page.. does any one have any idea's? Hiya, am near

RE: [PHP] mail ....any idea's?

2001-03-05 Thread Peter Houchin
That wasn't it : if i use any other headers .. ie $mailheaders .= "X-Priority: 1\n"; they work .. its just with the CC that wont work : -Original Message- From: Jason Murray [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 06, 2001 10:45 AM To: 'Peter Houchin' Subject: RE:

Re: [PHP] mail problem

2001-03-04 Thread David Robley
On Mon, 5 Mar 2001 14:17, Peter Houchin wrote: Hiya, am near completeion of a site only i can't get any mail to send to multiple recipients at all .. either in the "To:" section or having on email in "To" and one email address in "CC" section.. and i need to be able to do this ... can

Re: [PHP] mail() question

2001-02-27 Thread W.D.
just the info in the .txt file did you want to actually send the .txt file or just the info in the .txt file?? -Original Message- From: W.D. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 28, 2001 10:19 AM To: [EMAIL PROTECTED] Subject: [PHP] mail() question I want to

RE: [PHP] mail() question

2001-02-27 Thread Peter Houchin
- From: W.D. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 28, 2001 10:34 AM To: Peter Houchin; [EMAIL PROTECTED] Subject: Re: [PHP] mail() question just the info in the .txt file did you want to actually send the .txt file or just the info in the .txt file?? -Original Message-

Re: [PHP] Mail() Problems in a heterogenous network

2001-02-26 Thread Kelly Corkill
Sounds like they have relay disabled on their SMTP server and the IP that your PHP is running on is not on an included network address. As them to verify that your ip address is ok. The mail server will accept locally destined mail but anything else is seen as a relay attempt (Spam) and

Re: [PHP] Mail() Problems in a heterogenous network

2001-02-26 Thread php3
Addressed to: "Parker, John (Snorkel)" [EMAIL PROTECTED] "'[EMAIL PROTECTED]'" [EMAIL PROTECTED] ** Reply to note from "Parker, John (Snorkel)" [EMAIL PROTECTED] Mon, 26 Feb 2001 16:02:32 -0600 The behaviour is this: When I send mail from the webserver (running as [EMAIL

RE: [PHP] mail prob

2001-02-23 Thread PHPBeginner.com
just get some examples from php.net/mail and pass the variables to it any way you wish - it all will work Sincerely, Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: W.D. [mailto:[EMAIL

Re: [PHP] mail prob

2001-02-22 Thread W.D.
so there is no way to pull this variable from an email form field? From: "W.D." [EMAIL PROTECTED] I'm using a remote host, and when I call mail() with all the var's pulling values from form fields, it still shows as nobody in from header. Is this a server situation? Theyre using php4

Re: [PHP] mail prob

2001-02-22 Thread Simon Garner
From: "W.D." [EMAIL PROTECTED] so there is no way to pull this variable from an email form field? Eh? Of course, $from can be set by a form field if you want. Or a database, or any way you can set a variable. Then pass it to mail(), per my last message. From: "W.D." [EMAIL PROTECTED]

Re: [PHP] mail prob

2001-02-22 Thread David Robley
On Fri, 23 Feb 2001 16:32, W.D. wrote: so there is no way to pull this variable from an email form field? From: "W.D." [EMAIL PROTECTED] I'm using a remote host, and when I call mail() with all the var's pulling values from form fields, it still shows as nobody in from header.

Re: [PHP] mail prob

2001-02-22 Thread Simon Garner
From: "W.D." [EMAIL PROTECTED] yea I guess that would work better, I dunno tho, I tried setting $from = $Email and the blasted server still served it up as nobody in the header. But the rest would make more sense. Yes [EMAIL PROTECTED] would need a copy to trigger an autoresponse. I know I

Re: [PHP] mail() test method

2001-02-19 Thread Richard Lynch
mail() returns a true/false value to indicate success or failure. Though I can never remember which means which, and the docs are not too clear... if (mail('[EMAIL PROTECTED]', 'test', 'test')){ echo "mail returned trueBR\n"; } else{ echo "mail returned falseBR\n"; } Also, there's some

Re: [PHP] Mail function

2001-02-19 Thread Richard Lynch
Use \r\n which is spec, and unfriendly mailers from Microsoft won't "embrace and extend" enough to accept just \n which is Unix-standard. What a surprise. Oh -- it won't be HTML email. For *that* you need to send mime attachments. There are multiple functions to do this in code archives such

Re: [PHP] mail()

2001-02-19 Thread Christopher Allen
I have a mail script that works fine except that it does not send to the CC in my header options... nor will it send to multiple addresses can some one please give me some advice on this... I've looked in the php manual as well as other web pages but neither have an answer for me.

Re: [PHP] mail()

2001-02-19 Thread David Robley
On Tue, 20 Feb 2001 08:52, Peter Houchin wrote: I have a mail script that works fine except that it does not send to the CC in my header options... nor will it send to multiple addresses can some one please give me some advice on this... I've looked in the php manual as well as other web

RE: [PHP] mail()

2001-02-19 Thread Peter Houchin
When i use Cc: name@domain it doesnt send any emails if i use CC it gives me the same result as cc, any other suggestions? -Original Message- From: David Robley [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 20, 2001 11:28 AM To: Peter Houchin; PHP MAIL GROUP Subject: Re: [PHP] mail

Re: [PHP] mail not sending to multiple address

2001-02-15 Thread Richard Lynch
Try changing all your \n to \r\n. RFC is \r\n. Un*x mail programs are smart enough to take \n Microsoft mail programs are not that smart. Put in the space after Cc: and before your email. The space is *required* by some (all?) emailers? -- Visit the Zend Store at http://www.zend.com/store/

Re: [PHP] Mail classes

2001-02-12 Thread Ankur Verma
try using the class that I adopted for my intranet email solution from the avialable classes on the net aqnd added some functions especially suited for a webmail application. I also developed a webmail solution called Kazam Intranet Email Solution usign this class. you can download the complete

Re: [PHP] Mail-Encryption

2001-02-09 Thread Christian Reiniger
On Wednesday 07 February 2001 22:42, Rodolfo Gonzalez Gonzalez wrote: I found a pgp class and took parts of it to work with gpg, but it doesn't work in safe-mode. I'm using this pipe to pass the data to encrypt to gpg: $comm = "echo '$data' | $this-gpg-commmand"; $fd =

Re: [PHP] Mail-Encryption

2001-02-09 Thread Lic. Rodolfo Gonzalez Gonzalez
On Thu, 8 Feb 2001, Richard Lynch wrote: Maybe you can create a custome keyring for just the web-usage of public keys only... Hum... I wouldn't like it, anyway. Hmmm, is there any other way to pass "stdin" to an external program, other than using echo and a pipe?. I've also tried by placing

Re: [PHP] Mail-Encryption

2001-02-09 Thread Lic. Rodolfo Gonzalez Gonzalez
On Fri, 9 Feb 2001, Christian Reiniger wrote: This returns echoes the part after the | in safe-mode. echo only outputs something. it doesn't return anything. Yup, grammar error, I meant "prints to stdout" :) Write $comm = "$data | " . $this-gpg_command; Didn't work that way :( and:

Re: [PHP] Mail-Encryption

2001-02-08 Thread Richard Lynch
I want to send mails via the "mail"-command which are encrypted and which uses the certificates used by Netscape Messenger and Outlook (if you export the files, it's extention is .p12). - How do I generate such keys (in general) ? Install gnupg (http://gnupg.org) or PGP and use

Re: [PHP] Mail-Encryption

2001-02-08 Thread Rodolfo Gonzalez Gonzalez
On Thu, 8 Feb 2001, Richard Lynch wrote: You can find a long-winded post from me a year or two ago about my trials and tribulations (and a *lot* of help from others to get me going). I found a pgp class and took parts of it to work with gpg, but it doesn't work in safe-mode. I'm using this

Re: [PHP] Mail-Encryption

2001-02-08 Thread Richard Lynch
] To: Richard Lynch [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, February 07, 2001 3:42 PM Subject: Re: [PHP] Mail-Encryption On Thu, 8 Feb 2001, Richard Lynch wrote: You can find a long-winded post from me a year or two ago about my trials and tribulations (and a *lot* of help from

Re: [PHP] mail/sendmail lmitations?

2001-02-07 Thread Steve Werby
"Dave VanAuken" [EMAIL PROTECTED] wrote: anyone have an idea what the limit either in addresses or string length that sendmail can handle in a to, cc, or bcc field? I think the total message header length can have a max byte size in sendmail (I think primarily as a crude anti-spam method), but

RE: [PHP] mail( ) question

2001-01-30 Thread Jon Haworth
If you've copied-and-pasted that script, you might want to correct this line: scrip language="JavaScrip" Both the words "script" and "Javascript" have a T on the end of them :-) On the other hand, why don't you just use PHP for the whole thing? Get the e-mail address from a form, make the

Re: [PHP] mail( ) question

2001-01-29 Thread Toby Butzon
This isn't going to work the way it's set up now. Javascript is processed by the visitor's browser, while PHP is processed by the server before the page is ever sent. So in essence, PHP doesn't care one bit what anything outside of the ?php ? tags does. Therefore, you're instructing PHP to do

Re: [PHP] mail()

2001-01-26 Thread Toby Butzon
You may need to check your mail server's error logs and see if something's happening there. Assuming PHP _is_ finding the mail server and attempting to send the message, there must be some problem at the mail server (ie, no relay access for the IP where your script is running, etc.). --Toby

RE: [PHP] mail list archive

2001-01-17 Thread Maxim Maletsky
here: http://marc.theaimsgroup.com/?l=php-generalr=1w=2 have fun! Maxim Maletsky -Original Message- From: Taras Vasylkevych [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 17, 2001 7:08 PM To: [EMAIL PROTECTED] Subject: [PHP] mail list archive Hi, is it possible to review the

Re: [PHP] mail list archive

2001-01-17 Thread Neil Zanella
Check out The Mail Archive at http://www.mail-archive.com/ ! On Wed, 17 Jan 2001, Taras Vasylkevych wrote: Hi, is it possible to review the archive of this mailing list. And if possible then where? Thanks, Taras Mit freundlichen Gren Taras Vasylkevych team in medias GmbH

Re: [PHP] mail() question

2001-01-15 Thread jeremy brand
Your Return-Path: header should have that email address. Jeremy Jeremy Brand :: Sr. Software Engineer :: 408-245-9058 :: [EMAIL PROTECTED] http://www.JeremyBrand.com/Jeremy/Brand/Jeremy_Brand.html for more Get your own Free, Private email at http://www.smackdown.com/ - - - - - - - - - - - - -

Re: [PHP] mail() question

2001-01-15 Thread jeremy brand
/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "body" -- Quoted from Yahoo! homepage, http://www.yahoo.com On Mon, 15 Jan 2001, Robert Hough wrote: Date: Mon, 15 Jan 2001 15:27:06 -0500 (EST) From: Robert Hough [EMAIL PROTECTED] To: jeremy brand [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] mail(

Re: [PHP] mail() question

2001-01-15 Thread Robert Hough
On Mon, 15 Jan 2001, jeremy brand wrote: So, does $sender_address have the email address that you want it returned to? You didn't specifically say this, that is why I asked. Sorry, yes it does. The message, if delivered properly, is fine. The receiver can hit "Reply" and that works as

Re: [PHP] mail() question

2001-01-15 Thread jeremy brand
ough wrote: Date: Mon, 15 Jan 2001 15:53:01 -0500 (EST) From: Robert Hough [EMAIL PROTECTED] To: jeremy brand [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] mail() question On Mon, 15 Jan 2001, jeremy brand wrote: So, does $sender_address have the email address that you want it

Re: [PHP] mail() question

2001-01-15 Thread mailing_list
I asked the same question some weeks ago! The problem is, my root installed the mail-function so that "nobody" is the owner of the send-process! I wanted the same thing as you want - At last I did a workaround (not bad for sending that small amount of mails I do): I configured .procmailrc, so

Re: [PHP] mail() question

2001-01-15 Thread Robert Hough
Quick update, for anyone interested... I managed to answer my own question, but I'd still like to thank everyone that replied, it did lead me to the right place. What I ended up doing was using sendmail with the -f option. This did require me to add a new trusted user to my sendmail.cf though.

<    5   6   7   8   9   10