[PHP] Mail()

2002-02-15 Thread André Felix Miertschink
I have been installing NuSphere (Apache and PHP 4.0.6). As that I configure the Apache or PHP, so that I get to use and to test the command mail in my computer? André -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mail()

2002-03-19 Thread Jennifer
Hi guys, I'm new to PHP and i'm trying to set it up so that i can use the mail() function to send emails. I'm using Mac OS X 10.1.3, PHP 4.1.2 and Apache/1.3.20. I've copied the php.ini-dist to usr/local/lib and renamed it php.ini I have also uncommented the following lines from the httpd.co

[PHP] mail

2002-03-20 Thread Sven Jacobs
hey Is it possible to put somebody in CC when you use the mail() function ???

[PHP] mail...

2002-03-24 Thread Mantas Kriauciunas
Hey PHP General List, Why do i get 5 copies of each email? not always but sometime 3 sometimes 2 sometimes 5. Is this the only me (coz something is messed up with mail server or mail client) or some ppl also gets more than one :--: Have A Nice Day! M

[PHP] Mail

2001-02-17 Thread Brandon Feldhahn
can somone give me a mail sending script it's like whatever i do there is always a error -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] mail()

2001-02-19 Thread Peter Houchin
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. my code is bel

[PHP] mail()

2001-01-26 Thread TraXter
Hello php-general, i get an unknown error with mail(). I dont know why but maybe somebody knows what i can do. the code: The error: Warning: Unknown error in ./mailtest.php on line 2 i set up the php.ini correctly !!! Plz help me! -- Best regards, TraXter mail

[PHP] mail

2001-02-04 Thread Deependra B. Tandukar
Greetings! I made one script with mail <"email address">. It works in my home computer (Linux and php 4) and not working in my web server (Linux and php 4). What can be the reason? Looking forward to hearing from you. DT -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mai

[PHP] Mail

2001-03-14 Thread Wade Halsey
Hi   im having a slight problem with this mail class, it works fine up until the loop runs more than 13 times, is this a looping problem or a mail problem? Ive attatched the mail class and the code is below:     include "./include/mime_mail.inc";$fp=fopen(TestFile.txt, "w"); /*loop certain n

[PHP] mail()

2001-07-25 Thread Zherdev Anatoly
I want to get name of virtual host that send mail from mail() function for prevention spamming, but when php starting as apache module sendmail executed from mail() function in php script has'nt apache environment, but only shell environment. Can i configure php for getting apache environmet fro

[PHP] Mail()

2001-08-12 Thread Mahmoud Kassem
How can force my From: instead of the nobody@servername ?

[PHP] Mail() Timeout

2002-01-16 Thread Ben Sinclair
Is there a way to shorten the timeout for the mail() function? Currently it will wait too long when it is unable to send mail, causing the browser to appear to hang. -- Ben Sinclair [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

[PHP] mail() question

2002-01-23 Thread Matthew Walker
I’ve tried Reading The Fine Manual on this, and can’t find an easy answer. Here’s the headers for a message from the script, and the error I’m getting on some mail it sends… Return-Path: Received: (from wwwrun@localhost) by arsenic.mth.com (8.11.6/8.11.3) id g0O4UCQ27546;

[PHP] Mail Attachments

2002-01-24 Thread Gordon Stewart
Dear List I have just compleated a PHP web frontend to the standard mail function in PHP. I have got it to send and recieve email. Can I take this programming task further and allow it to send and recieve attachments. My script runs on a redhat 7 box. Can anyone help? How can i achieve this?

[PHP] mail headers

2002-02-13 Thread Stalmannen
Hej! I have a question. I send mail from a php-script with the mail()-function. However the smtp server I use has a wrong time set. Can I set the sent-time through the headers so I take my web-servers time? and how then? Thankfull for help. /Kalle

RE: [PHP] Mail()

2002-02-15 Thread Rick Emery
15, 2002 5:55 AM To: [EMAIL PROTECTED] Subject: [PHP] Mail() I have been installing NuSphere (Apache and PHP 4.0.6). As that I configure the Apache or PHP, so that I get to use and to test the command mail in my computer? André -- PHP General Mailing List (http://www.php.net/) To

[PHP] mail() function

2002-03-15 Thread Piotr Wozniak
Hi, I can't send e-mail by mail() function (PHP 3.0.18, local MTA Postfix). Function succeeds (return code is 1) but no e-mail is delivered and there is no records in mail logs. Variable sendmail_path in php3.ini is rather good: /usr/sbin/sendmail - this is proper link to real executable sendmail

Re: [PHP] mail()

2002-03-19 Thread Miguel Cruz
On Wed, 20 Mar 2002, Jennifer wrote: > I'm new to PHP and i'm trying to set it up so that i can use the mail() > function to send emails. I'm using Mac OS X 10.1.3, PHP 4.1.2 and > Apache/1.3.20. > > ... nothing seems to happen ei. the mail was not sent. There's a problem with the default con

Re: [PHP] mail()

2002-03-19 Thread Miguel Cruz
On Wed, 20 Mar 2002, Jennifer wrote: > $to="[EMAIL PROTECTED]"; > $from="[EMAIL PROTECTED]"; > $subject="Hi"; > $message="this message"; > mail($to, $subject, $message, "$from\r\nX-Priority: 1 (Highest)"); By the way, your From line is also mangled. You should have: $from = "From: [EMAIL PROTEC

Re: [PHP] mail()

2002-03-19 Thread Jennifer
sorry...i should have mentioned also that I am not using the internal mail server but i am using an external mail server On Wednesday, March 20, 2002, at 05:24 PM, Jennifer wrote: > Hi guys, > > I'm new to PHP and i'm trying to set it up so that i can use the mail() > function to send emails.

Re: [PHP] mail

2002-03-20 Thread RIVES Sergio
yes I guess http://www.php.net/manual/en/function.mail.php Good luck. SR Sven Jacobs a écrit : > hey > > Is it possible to put somebody in CC when you use the mail() function ??? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mail

2002-03-20 Thread TV Karthick Kumar
Yeah, just add "Cc:[EMAIL PROTECTED]" to your headers, that's it... Karthick - Original Message - From: "Sven Jacobs" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 20, 2002 11:51 AM Subject: [PHP] mail > hey > >

Re: [PHP] mail

2002-03-20 Thread Krzysztof Kocjan
//-- function sendmail( $From, $To, $CC, $BCC, $Replay_To, $Subject, $Body, $Mailer, $Extra_Header ) { $Header = ''; $Heade

Re: [PHP] mail()

2002-03-20 Thread bvr
Jennifer, The SMTP option in php.ini is for Windows only. On other platforms you should specify a delivery program (sendmail). If you still want to use an external server, there are classes available that send mail through an SMTP server without using mail(). bvr. Jennifer wrote: > sorry..

[PHP] mail() function.

2002-03-30 Thread Birtch, James
When I email using this function, the email which is received has the following content at the top of it... From: [EMAIL PROTECTED] Return-Path: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> X-OriginalArrivalTime: 31 Mar 2002 01:14:57.0786 (UTC) FILETIME=[790BEDA0:01C1D851] Any ideas on how

[PHP] mail tag

2002-04-03 Thread hamish
hello, I have coded a typical mail process for sending a mail from a form. It works fine except for anytime any one puts a ' or a " in the content of the mail, the tag places a \ infront of it. I have tried to stripslashes and the mail is being sent as html. Has any one got the answer? code b

[PHP] Mail Function

2002-04-03 Thread Chiew, Richard
> Can someone please tell me what did i do wrong in the following php > mail function? > > I created the following php file using the mail() function but i keep > getting the 'failed to connect.unable to send your mail.' message. Can > anyone please tell

[PHP] mail() problem...

2002-04-03 Thread Jack Davis
I wrote a small piece of code to take a text file with a list of email addresses in it one per line and send out an email to each of them like so... $headers = "From: [EMAIL PROTECTED]\r\n"; $headers .= "Reply-To: [EMAIL PROTECTED]\r\n"; $message = "Blah Blah Bla

[PHP] mail() + attachement

2002-04-20 Thread Wolf-Dietrich von Loeffelholz
Is it possible to send with mail an attachment .. if yes, how ??? Greetings wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Mail responders

2002-04-26 Thread Dennis Gearon
All these lists that have addresses to subscribe, unsubscribe, etc, how do they work? Are they using a cron job to poll the mail inbox through sendmail? Does all mail not to a specific address at the site go to a 'catchall' address, which is then polled? -- If You want to buy computer parts, see

[PHP] Mail server

2002-05-05 Thread Diana Castillo
Does anyone know of a free mail server to install on a linux server that works better than fmail? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mail function

2002-05-05 Thread Diana Castillo
Hi, if I use the mail function, as in : mail("[EMAIL PROTECTED]", "My Subject", "Line 1\nLine 2\nLine 3"); The mail comes from "Webserver" How can I change the from ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mail() function

2002-05-27 Thread Jochem Kempe
Dear fellars at php.net It appears to me that there is something wrong with the mail() function, I've got an Apache 2.0.36 webserver in an Windows XP environment, now everythin seems to work just fine until I try to execute this: mail("[EMAIL PROTECTED]", "My Subject", "Line 1\r\nLine 2\r\nLine

[PHP] mail() function

2002-05-29 Thread Phil Schwarzmann
I want to write a simple script that sends an e-mail message using PHP. I'm assuming that my web-host has the mail function hooked up to the e-mail server (should I be assuming this or should I assume that it's NOT hooked up?). What is the syntax for this command? something like this... ? (

[PHP] Mail Archives

2002-05-29 Thread Natarajan
HI, 1. Where are the mail archives of this mailing list? 2. Any free online downloadable books ( html / pdf formats) on PHP? Thanks -- Natarajan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mail() problem

2002-06-05 Thread César L . Aracena
Hi all, I have this strange problem where I can send e-mails from a PHP script to a common e-mail address such as Hotmail's, but I can't send to my ISP-given e-mail address (@infovia.com.ar). Does anyone happen to know why is it that makes it different??? Thanks, Cesar Aracena [EMAIL PROTECTE

[PHP] [mail] quetion

2002-06-28 Thread Evan
What is best: 1) calling n-times the function mail() [with n = numer of emails] or 2) calling 1 time mail() and use CC ? Or it it is the same thing? Thanks, Evan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mail atashments

2002-07-04 Thread adi
HI, How to send atashments with mail() function? I have a form to mail page, and i want to atash and transmit files tx

[PHP] Mail() function

2002-07-09 Thread César Aracena
Hi all. I wonder if there’s a way to *HIDE* some parts from the Heading of the emails sent with PHP. I’m trying to create an anonymous mail sender but in the header of the message appears: Received: (from httpd@localhost) by www.whateverdomain.com (8.10.2/8.10.2) id g69MEA527130;

[PHP] mail() question

2001-10-23 Thread Jeff Kryvicky @ Collider
Hi all, I've got a question that I'm sure can be answered, but I'm a little stuck right now... I've set up yelvington's excellent annotate script, and it works beautifully. My next step was to try to add an auto email function to notify me when someone has posted a comment, and send me the ent

[PHP] mail() function

2001-11-14 Thread Brandon Orther
Hello, I have been mssing with the mail function for a day now. When I send a e-mail it always adds the server name to the end of whatever I put the e-mail from in the header. Example: $mailheaders = "From: \"Do Not Reply\"\r\nReply-To: Do Not Reply@Do Not Reply\n"; If I use the above hea

[PHP] mail list

2001-11-19 Thread Yura
Hi, I already run php site www.body-builders.org but I wanned to add to it mailing list like this one at php.net I understand general algorithm of it but as newbuy I don't know how MySQL database can receive mail and then add it to the base? so my question is how do i make MySQL database to

[PHP] mail() function

2001-11-20 Thread Ben Clumeck
I am new to PHP. I am trying to specify the email address in the "From" field. Right now it gives me my host name. Can anyone help? Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact t

[PHP] mail client

2001-11-22 Thread Krzysztof Kakol
Hi I wrote a kind of web mail client. But I've got a problem. When the function imap_header fetches all of the headers from a mailbox in a loop, it lasts very long time, if a user has big files attached to his mails. I operate at pop3 server. What's the problem? Do you know, how to list all of the

[PHP] mail-help

2001-11-30 Thread Chamarty Prasanna Kumar
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] mail function

2001-12-05 Thread Gregory Jon Welling/Parts Trading Inc.
Is it possible to use php's mail function to send an html formated email (one of your pages or a newsletter, whatever...)? If so, how? GW

[PHP] mail function

2001-12-20 Thread Peter
Hi, Can someone tell me if there is something wrong with the order of the mail function in here. I am trying to get the text in HTML format, but I am not getting the text in html format. else { $mailheaders = "From: $email\r\n"; $mailheaders .= "Reply-To: $email\r\n"; $mailheaders .= "Content-T

[PHP] Mail-Encryption

2001-02-06 Thread Martin Thoma
Hello ! 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) ? - How can I send an encrypted email from an Unix-Server (

[PHP] Mail classes

2001-02-12 Thread Josh G
Hi, I'm wondering what're the best classes available for reading/ sending emails? I want to do a webmail solution (for myself at first), and don't want to use IMP. I'd need to be able to handle attachments as well. Any pointers? Cheers, Gfunk - http://www.gfunk007.com/ I

Re: [PHP] Mail

2001-02-19 Thread Richard Lynch
> can somone give me a mail sending script it's like whatever i do there > is always a error I suspect the error is not in your actual script but in how you set up your mail in php.ini... Here's a test script: What's the error message? -- Visit the Zend Store at http://www.zend.com/store/ Wan

[PHP] Mail function

2001-02-19 Thread Joe Njeru
Hi, I am trying to send an email message using the mail() function. However when I put new line breaks -> \n I get the following error Warning: Server Error in d:/wwwroot/admin/userdetails.php on line 12 But when I remove the newlines the function executes. What should I do to be able to send

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 we

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

[PHP] mail prob

2001-02-22 Thread W.D.
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 support and they claim its that I'm not using appropriate variables in the function. ___

[PHP] mail() question

2001-02-27 Thread W.D.
I want to send a .txt file back to the sender when a form is filled out, sort of like an autoresponder. I have one mail() to send info from form to me, is the only way to send out a file back to the sender by using a second mail()? _ Do Y

[PHP] mail problem

2001-03-04 Thread Peter Houchin
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 any one offer any suggestions ...( I'd prefer to have

[PHP] mail() question

2001-01-15 Thread Robert Hough
Sorry in advance for being redundant. I was unable to find the answer I needed, on the php.net site. We have a mailto form, which uses the mail() funciton. For the most part, it works as intended. All of my headers seem to be coming through intact (To, From, Reply-To, Return-Path, Error-To, etc).

[PHP] Mail problems

2001-01-16 Thread Todd H MacPherson
Hello I am doing a job for a client who has a host that just installed php4 on a WinNT system. He can not get the mail program to work properly. The server that php is on and the mail server are different computers. He, the host, asked me to try and by-pass the the mail utility and send directly

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 TraX

[PHP] mail( ) question

2001-01-29 Thread Fang Li
Hi All: Would anyone tell me how to correct the code in mail( ) function? Thanks a lot. function askEmailAddress( ){ var inputedData = prompt("The email address you want send to:"," "); if(confirm("The email address you want send to is" +

RE: [PHP] mail

2001-02-05 Thread PHPBeginner.com
:07 PM To: [EMAIL PROTECTED] Subject: [PHP] mail Greetings! I made one script with mail <"email address">. It works in my home computer (Linux and php 4) and not working in my web server (Linux and php 4). What can be the reason? Looking forward to hearing from you. DT -- PHP

[PHP] mail() problem

2001-03-14 Thread Vegard
I have php4 and Apache running on Windows 2000, and Im not able to get the mail-function to work. The mailsystem is on an other PC, and so I added SMTP= in the php.ini file. But still I get "Failed to connect" when I run mail(). I have heard that there can be a problem if the mailserver is separat

[PHP] mail() question

2001-03-20 Thread Wade DeWerff
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 and /n, but it formats as text not code function. $message = $Info ."". $Phone ."". $Email;

[PHP] Mail() Speed?

2001-04-05 Thread PHP User
Would opening a direct connection to sendmail be a bad thing to do in terms of speed and server time? Right now I loop through an array of email addresses, and just send them each out with mail() would something like this be better or worse in terms of the amount of time and resources it uses

[PHP] mail() limit?

2001-04-06 Thread Chris
Hi, Does anyone know if and what the limit is of bcc that can be used in the mail() function? Hundreds, thousands? Thanks, Chris

[PHP] mail() problem

2001-05-19 Thread Mark Wouters
Hi, Below the code i use. Everything works, the $mailto variable is buils up from a database and contains more then one email adresses. Now my question: how can i make the receivers of my message NOT to see the email addresses of all the receivers, so then can't reply to all? $mail ="$mailto"; $

[PHP] Mail slow

2001-06-27 Thread Tim Ward
I've finally got a mail client running on our web server and it works fine, except in the time it takes to run the mail() function. I've put diagnostics round the call and it seems to be taking 22 seconds to return. All I'm doing is forwarding the results of an enquiry form as plain text. I'm sure

[PHP] mail problem...

2001-07-04 Thread php
hai... I have install php and i want to create email direct but when i run my php...but i get error message Warning: Failed to Connect in e:/learn/php/mail.php on line 24 email failed or i need to add object mail in php anyone help me with this... my code like this... ===

[PHP] mail() help

2001-07-17 Thread Patrick W. Rateliff
I am getting this error when using the trying to use the mail function. Any insite will help, I have been up for too long working on a few projects and my brain is damn near melted. mail() is not supported in this PHP build in so when I built PHP 4.06 I am assuming I missed a option, but just

[PHP] mail priority

2001-07-24 Thread Jack
Dear folks, I am doing the email using mail() command. I wonder if there is anyone can tell me how do I do the priority attached with the message so that the mail get sent out with different priority status. Any advice will be appreciated. Jack [EMAIL PROTECTED] "Love your enemies, it will drive

[PHP] mail - sendmail

2001-08-03 Thread Michael Mehlmann
Hi! I wanted to use the full SMTP-Protocol including "MAIL FROM:" and "RCPT TO:", and therefore I can't use mail(). I have written a perl-script, I call from PHP, that connects to the SMTP-server directly and this worked fine - until a server went down, and my ISP's-SMTP-Server told my perl-scrip

[PHP] Mail Function

2001-04-11 Thread RealGM
Hi, Tonight was my first attempt at using the mail() function, and running the script I had no problems with execution. Everything seemed to go smoothly, except for one thing. I never received an email. I have consulted the manual and found nothing on the questions I am about to ask. Is t

[PHP] mail function????

2001-04-12 Thread Terence Truong
Hi, I have PHP 4.0 with IIS on Win2K and I think compiled everything right. I'm not sure how this works on Win32, but on unix it's fine. It's the mail() function. ex. mail("[EMAIL PROTECTED]","My Subject","My Test"); and it returns: Warning: Server Error in C:\PHP/index.php on line 4 ANY HEL

[PHP] Mail help!!!!!

2001-04-17 Thread Bruno Freire
Hi! My name is Bruno. Somebody can tell me how to send the same message to more than one recipient without repeat de code?? something like $corpo.="\n"; $corpo.="\tData de Saída:\t\t$dt_saida\n\n\n"; $corpo.="\tClique no link abaixo para visualização da Folha de Cotação:\n\n";

[PHP] Mail function

2001-04-24 Thread Krupiński Marcin
Hi everbody ! When I use mail() function it seems not to work what I can find in logs is : Apr 24 16:51:01 xxx sendmail[10688]: f3OEp1U10688: SYSERR(nobody): Cannot create ./dff3OEp1U10688: Permission denied Why it doesn't work ??? System RH7.0 with sendmail regards, Marcin -- PHP General

Re: [PHP] Mail()

2001-08-12 Thread ReDucTor
>From : Your Name <[EMAIL PROTECTED]> make sure you have the arrow things around it... thats in your headers... - Original Message - From: "Mahmoud Kassem" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 13, 2001 4:20 PM Subject: [PHP] M

RE: [PHP] Mail()

2001-08-12 Thread Mahmoud Kassem
rs .= "X-Authenticated-IP: [".$REMOTE_ADDR."]\n"; if ($prom == 1) { $headers .= "X-Priority: 2\n"; $headers .= "Importance: High\n\n"; mail("$emailto_owner"."<".$emailto.">","$subject","$message","

RE: [PHP] Mail()

2001-08-12 Thread Mahmoud Kassem
THe same .. did not make a difference .. for php.ini settings : I am on a virtual hosting .. so I do not have access to the php.ini file -Original Message- From: karthik [mailto:[EMAIL PROTECTED]] Sent: Friday, July 13, 2001 9:43 AM To: Mahmoud Kassem Subject: Re: [PHP] Mail() Hi Try

RE: [PHP] Mail()

2001-08-13 Thread Maxim Maletsky
Try using .htaccess or ini_set() - perhaps this will help you when on shared server. regards, Maxim Maletsky -Original Message- From: Mahmoud Kassem [mailto:[EMAIL PROTECTED]] Sent: Monday, August 13, 2001 4:12 PM To: karthik Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Mail() THe same

RE: [PHP] Mail()

2001-08-13 Thread Michael Geier, CDM Systems Admin
: Mahmoud Kassem [mailto:[EMAIL PROTECTED]] Sent: Monday, August 13, 2001 1:34 AM To: ReDucTor Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Mail() I have the arrows my code is : $headers .= "Return-Path: <[EMAIL PROTECTED]>\n"; $headers .= "Errors-To: <[EMAIL PROTECTED]>\n";

RE: [PHP] Mail()

2001-08-13 Thread Mahmoud Kassem
I said before I do not have access to the php.ini I am on a virtual Hosting ... -Original Message- From: Michael Geier, CDM Systems Admin [mailto:[EMAIL PROTECTED]] Sent: Monday, August 13, 2001 4:43 PM To: Mahmoud Kassem; ReDucTor Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Mail() your

RE: [PHP] Mail()

2001-08-13 Thread Michael Geier, CDM Systems Admin
assem [mailto:[EMAIL PROTECTED]] Sent: Monday, August 13, 2001 9:40 AM To: Michael Geier, CDM Systems Admin Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Mail() I said before I do not have access to the php.ini I am on a virtual Hosting ... -Original Message- From: Michael Geier, CDM Systems

RE: [PHP] Mail()

2001-08-13 Thread Mahmoud Kassem
PROTECTED]] Sent: Monday, August 13, 2001 12:03 PM To: 'Mahmoud Kassem'; karthik Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Mail() Try using .htaccess or ini_set() - perhaps this will help you when on shared server. regards, Maxim Maletsky -Original Message- From: Mahmoud Kass

RE: [PHP] Mail()

2001-08-13 Thread Mahmoud Kassem
: Monday, August 13, 2001 6:12 PM To: Mahmoud Kassem Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Mail() rather than be rude about it, try reading the whole message and then looking through the PHP documentation. http://www.php.net/manual/en/function.ini-set.php

[PHP] mail function

2001-08-14 Thread Boaz Amit
<[EMAIL PROTECTED]> wrote: >hi all, >I cant seem to get my mail function to work. OK so i am a noob, that might >have something to do with it. I am using a script I found called the HTML >Mime Mail Class, which does everything i need except actually send the mail. >I am guessing that there is s

[PHP] Mail method?

2001-08-15 Thread Tamas Bucsu
Hi guys, Is there anything I should configure or set up on the server to make the "mail" method work? There is nothing about it in the manual (or I just haven't found it?). Thanks Tamas "Bucsesz" Bucsu

[PHP] mail from

2001-08-20 Thread PHP
Hello all. Does anyone know how i can set up the "from " and "Return Address" fields in the mail functions in php? thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administ

[PHP] mail function

2001-08-23 Thread Richard Baskett
I am trying to get the mail function to return anything that tells me that it was sent successfully or at least there were no errors, but assigning a variable to equal the mail function does not seem to return anything... On php's site it says it should return true. Am I going about this wrong?

[PHP] Mail function....

2001-09-12 Thread Kyle Smith
Can someone please just run me through the different sections of the mail function please cause i understand you can change the from address etc aswell -lk6- http://www.StupeedStudios.f2s.com Home of the burning lego man! ICQ: 115852509 MSN: [EMAIL PROTECTED] AIM: legokiller666

[PHP] mail problem

2001-09-12 Thread Peter Houchin Sun Rentals STR Manager
hiya I have several scripts that send mail from web pages made in php.. now these pages all work fine. now all of a sudden php has stopped sending mail and I don't know why System info Unix box running Solaris 2.6 apache 1.3.12 php 4.0.4pl1 using sendmail for the emails php.ini mail related

[PHP] Mail function

2001-09-30 Thread P.Agenbag
Hi, I'm not sure this is the right list to post this, and i'm not even sure if there is already a solution to this problem, in which case, sorry... Ok, my problem: PHP has (as you all know) a mail() function which is very handy to send mail to people. Now, with the advent and subsequent ease of M

Re: [PHP] Mail() Timeout

2002-01-16 Thread Rasmus Lerdorf
Fix your sendmail flags in your php.ini file to just queue up the mail. On Wed, 16 Jan 2002, Ben Sinclair wrote: > Is there a way to shorten the timeout for the mail() function? Currently it > will wait too long when it is unable to send mail, causing the browser to > appear to hang. > > -- > Be

Re: [PHP] Mail() Timeout

2002-01-16 Thread Ben Sinclair
PROTECTED] - Original Message - From: "Rasmus Lerdorf" <[EMAIL PROTECTED]> To: "Ben Sinclair" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, January 16, 2002 3:45 PM Subject: Re: [PHP] Mail() Timeout > Fix your sendmail flags in your

Re: [PHP] Mail() Timeout

2002-01-16 Thread Ben Sinclair
> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, January 16, 2002 4:13 PM Subject: Re: [PHP] Mail() Timeout > I changed my sendmail line to: sendmail_path = /usr/sbin/sendmail -t -i -O > DeliveryMode=q > > That should place it in the queue instead of trying to send it immediately, &

Re: [PHP] Mail() Timeout

2002-01-16 Thread Ben Sinclair
;[EMAIL PROTECTED]> Sent: Wednesday, January 16, 2002 4:15 PM Subject: Re: [PHP] Mail() Timeout > I just noticed from phpinfo() that sendmail_path reads: > /usr/sbin/sendmail -t -i -O DeliveryMode > > Did it really drop the "=a" or is it just a problem with phpinfo()?

Re: [PHP] Mail Attachments

2002-01-24 Thread Neil Freeman
Take a look at the articles on: http://www.devshed.com/Server_Side/PHP HTH Neil Gordon Stewart wrote: > Dear List > > I have just compleated a PHP web frontend to the standard mail function in > PHP. I have got it to send and recieve email. > > Can I take this programming task further and al

[PHP] mail() - 7bit headers

2002-02-07 Thread Martin C. Petersen
How do i encode 8 bit text to 7 bit in php so that the mail server (courier) won't complain about 8 bit content in the header (From:) while still enabling mailreaders to decode it? Regards Martin Petersen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

[PHP] Mail Sent Date

2002-02-08 Thread Pickup, Jordan
We are in the -0700 time zone but whenever I use PHP to send a message it sends it from +0700 making the message appear to have been sent 14hours earlier than it was. I can add my own Date header to the mail function with the correct date/time zone but that means I have to modify all my script

[PHP] Mail Headers & Formatting

2002-02-19 Thread Steven Walker
Can someone tell me where to find documentation on defining mail headers and formatting? I've been to faqs.org, but was hoping to find something a bit more friendly. Steven J. Walker Walker Effects www.walkereffects.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To u

  1   2   3   4   5   6   >