Re: [PHP] Sending mail from localhost

2009-05-30 Thread Ashley Sheridan
On Sat, 2009-05-30 at 15:01 +0530, Sumit Sharma wrote: > I have already un-commented the smtp settings as > > SMTP = localhost > smtp_port = 25 > > do I need to change any other settings. > > Sumit > > > > On Sat, May 30, 2009 at 3:06 PM, Ashley Sheridan > wrote: > On Sat, 2009-05-3

Re: [PHP] Sending mail from localhost

2009-05-30 Thread Ashley Sheridan
On Sat, 2009-05-30 at 14:41 +0530, Sumit Sharma wrote: > Hi, > > I am new to php and not able to send mail from localhost. when trying to do > so getting following response: > > > *Warning*: mail() [function.mail ]: Failed > to connect to mailserver at "localhost"

Re: [PHP] Sending mail with Outlook high priority

2008-11-04 Thread Richard Heyes
> Is there any PHP functionality for sending mail and attaching a high > priority to the mail item ? My htmlMimeMail code will do this for and, make it much easier too. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 1st) -- PHP Genera

Re: [PHP] Sending mail with Outlook high priority

2008-11-03 Thread Edward Diener
Per Jessen wrote: Edward Diener wrote: Is there any PHP functionality for sending mail and attaching a high priority to the mail item ? printf() ? All you need to do is a add header like "X-Priority: High". It's just a line of text. Thanks for pointing this header out. My search for "X-

Re: [PHP] Sending mail with Outlook high priority

2008-11-03 Thread Edward Diener
Per Jessen wrote: Edward Diener wrote: Is there any PHP functionality for sending mail and attaching a high priority to the mail item ? printf() ? All you need to do is a add header like "X-Priority: High". It's just a line of text. Thanks for pointing this header out. My search for "X-

Re: [PHP] Sending mail with Outlook high priority

2008-11-03 Thread Per Jessen
Edward Diener wrote: > Is there any PHP functionality for sending mail and attaching a high > priority to the mail item ? printf() ? All you need to do is a add header like "X-Priority: High". It's just a line of text. > In Outlook ( and Outlook Express ) there is the notion of a high > prior

Re: [PHP] sending mail from localhost

2007-06-13 Thread Daniel Brown
On 6/13/07, Richard Lynch <[EMAIL PROTECTED]> wrote: Intent inschment. Sorry I didn't get this message sooner, but Gmail's spam filter blocked the message for apparently using "fake filler text" or something. Luckily, however, it didn't interrupt my daily flow of "w4ys 2 rnake rny P3N|$ b1g

Re: [PHP] sending mail from localhost

2007-06-13 Thread Richard Lynch
On Wed, June 13, 2007 2:07 pm, Daniel Brown wrote: > As for the SPAM filter stuff, all of the rest makes sense, but the > Reply-to: header actually goes against the original spirit and > intention of the design. Refer to RFC 822 Part 4 Section 1 --- the > reply-to header is intended for use as

Re: [PHP] sending mail from localhost

2007-06-13 Thread Daniel Brown
On 6/13/07, Richard Lynch <[EMAIL PROTECTED]> wrote: On Wed, June 13, 2007 1:09 pm, Daniel Brown wrote: > Is that a fact, Richard? It was always my understanding that the > raw connection to the SMTP server initiated by the PHP mail() > functions and Sendmail required the \r\n separator for

Re: [PHP] sending mail from localhost

2007-06-13 Thread Richard Lynch
On Wed, June 13, 2007 1:09 pm, Daniel Brown wrote: > Is that a fact, Richard? It was always my understanding that the > raw connection to the SMTP server initiated by the PHP mail() > functions and Sendmail required the \r\n separator for every field > other than SUBJECT (included in the DATA

Re: [PHP] sending mail from localhost

2007-06-13 Thread Daniel Brown
On 6/13/07, Richard Lynch <[EMAIL PROTECTED]> wrote: On Wed, June 13, 2007 8:51 am, Daniel Brown wrote: > $from = "[EMAIL PROTECTED]"; > //$reply_to = "[EMAIL PROTECTED]"; // Same address, so not needed. Some spam filters and some email clients will behave rather badly if you don't have Reply-to

Re: [PHP] sending mail from localhost

2007-06-13 Thread Richard Lynch
On Wed, June 13, 2007 8:51 am, Daniel Brown wrote: > $from = "[EMAIL PROTECTED]"; > //$reply_to = "[EMAIL PROTECTED]"; // Same address, so not needed. Some spam filters and some email clients will behave rather badly if you don't have Reply-to: as well. Use it. > $headers .= "X-Mailer: PHP".phpv

Re: [PHP] sending mail from localhost

2007-06-13 Thread Daniel Brown
On 6/13/07, Robert Cummings <[EMAIL PROTECTED]> wrote: On Wed, 2007-06-13 at 09:51 -0400, Daniel Brown wrote: > > It's also not necessary to combine single and double quotes with > join marks (.'s) as you have it. While this isn't the problem, and > Stut is absolutely correct, your code woul

Re: [PHP] sending mail from localhost

2007-06-13 Thread Robert Cummings
On Wed, 2007-06-13 at 09:51 -0400, Daniel Brown wrote: > > It's also not necessary to combine single and double quotes with > join marks (.'s) as you have it. While this isn't the problem, and > Stut is absolutely correct, your code would look cleaner if you did it > as follows: > > $to = "[

Re: [PHP] sending mail from localhost

2007-06-13 Thread Daniel Brown
On 6/13/07, Stut <[EMAIL PROTECTED]> wrote: Ross wrote: > ; For Win32 only. > sendmail_from = mail.blue-fly.co.uk This should be an email address not just a domain. -Stut -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php It's also not

Re: [PHP] sending mail from localhost

2007-06-13 Thread Stut
Ross wrote: ; For Win32 only. sendmail_from = mail.blue-fly.co.uk This should be an email address not just a domain. -Stut -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sending mail on OS X

2007-06-09 Thread Richard Lynch
I'm pretty sure you want \r\n instead of \n\r, though as you only have one header and nothing after it, it doesn't matter maybe... You may also need to LOGIN to your SMTP server, from your PHP server, before you try to send mail through it. Some servers allow only specific IP (other servers in th

Re: [PHP] Sending mail on OS X

2007-06-09 Thread Frank Arensmeier
I think the key to your problem is to configure Postfix on Mac OS X properly. My best suggestion would be "Postfix Enabler" (look at e.g. versiontracker.com for the current version). Postfix Enabler makes it very easy to setup Postfix for exemple to use SMTP for the outgoing mails. Anothe

Re: [PHP] Sending mail on OS X

2007-06-08 Thread Jim Lucas
Christian Cantrell wrote: Hi, all. I'm sure this question has been asked, but I was not able to effectively search the forum archives, so I'm having to ask it again. I'm trying to use the mail function to send email on OS X, but the email gets rejected by the mail server I'm sending to. I get

Re: [PHP] Sending mail on OS X

2007-06-08 Thread Stut
Christian Cantrell wrote: Hi, all. I'm sure this question has been asked, but I was not able to effectively search the forum archives, so I'm having to ask it again. I'm trying to use the mail function to send email on OS X, but the email gets rejected by the mail server I'm sending to. I get

Re: [PHP] sending mail via php and unix box-clients thinks it's spam

2006-06-11 Thread Dimiter Ivanov
On 6/11/06, David Robley <[EMAIL PROTECTED]> wrote: blackwater dev wrote: > Here is what I use as the header: > > $header="From:[EMAIL PROTECTED]: text/html"; As Richard Lynch, suggested you need to check the headers from both the emails. Send exatcly the same mails to yourself, using both

Re: [PHP] sending mail via php and unix box-clients thinks it's spam

2006-06-11 Thread David Robley
blackwater dev wrote: > Here is what I use as the header: > > $header="From:[EMAIL PROTECTED]: text/html"; I think you need a space in there: $header="From: [EMAIL PROTECTED]: text/html"; > Thanks! > > On 5/31/06, Richard Lynch <[EMAIL PROTECTED]> wrote: >> >> On Tue, May 30, 2006 12:45

Re: [PHP] sending mail via php and unix box-clients thinks it's spam

2006-06-10 Thread blackwater dev
Here is what I use as the header: $header="From:[EMAIL PROTECTED]: text/html"; Thanks! On 5/31/06, Richard Lynch <[EMAIL PROTECTED]> wrote: On Tue, May 30, 2006 12:45 pm, blackwater dev wrote: > I have a site running on a linux box. If I use my mail server via an > email > client, the ema

Re: [PHP] sending mail via php and unix box-clients thinks it's spam

2006-05-30 Thread Richard Lynch
On Tue, May 30, 2006 12:45 pm, blackwater dev wrote: > I have a site running on a linux box. If I use my mail server via an > email > client, the email works fine but if I send email through the mail > function, > clients mark it as spam. I see the line in php.ini for SMTP but that > says > windo

Re: [PHP] sending mail via php and unix box-clients thinks it's spam

2006-05-30 Thread Chris
blackwater dev wrote: I have a site running on a linux box. If I use my mail server via an email client, the email works fine but if I send email through the mail function, clients mark it as spam. I see the line in php.ini for SMTP but that says windows only. How do I tell php to use my mail

Re: [PHP] Sending mail with php-

2006-01-12 Thread Jochem Maas
Richard Heyes wrote: and phpmailer - thats also be known to help me from myself (when it comes to make a pig's ear of using the mail() function) - 3 cheers for Richard Heyes (you just know a class rocks when you can actually name the author by heart! :-). Actually it's HTMLMimeMail - phpmail

Re: [PHP] Sending mail with php-

2006-01-11 Thread Dotan Cohen
gt; mail($toAddress,$subject,$message,$headers); > > good luck > > > Scott Duffy > > -Original Message- > From: Dotan Cohen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, January 11, 2006 2:49 PM > To: Sameer N Ingole > Cc: php-general@lists.php.net > Subjec

RE: [PHP] Sending mail with php-

2006-01-11 Thread Duffy, Scott E
;From: \"".$fromname."\" <".$fromaddress.">\n"; //return mail($toaddress, $subject, $message, $headers); $toAddress='[EMAIL PROTECTED]'; mail($toAddress,$subject,$message,$headers); good luck Scott Duffy -Original Message----- From: Dotan Cohen [ma

Re: [PHP] Sending mail with php-

2006-01-11 Thread Dotan Cohen
On 1/11/06, Jochem Maas <[EMAIL PROTECTED]> wrote: > actually I don't mind it - especially as I'm not on the apache or > fedora lists ;-) > > and with regard to sending out emails I find using a connection with > an SMTP server (local or not) is alot less hassle with regard to bounces > and stuff (

Re: [PHP] Sending mail with php-

2006-01-11 Thread Dotan Cohen
On 1/10/06, Sameer N Ingole <[EMAIL PROTECTED]> wrote: > Dear Dotan, > Dotan Cohen wrote: > > >On my home Fedora Core 4 box I run Apache 2.0. Sometimes when sending > >mail with php no mail is delivered, and I find this in the logs: > > > ><<< 550-Verification failed for <[EMAIL PROTECTED]> > ><<<

Re: [PHP] Sending mail with php-

2006-01-11 Thread Richard Heyes
and phpmailer - thats also be known to help me from myself (when it comes to make a pig's ear of using the mail() function) - 3 cheers for Richard Heyes (you just know a class rocks when you can actually name the author by heart! :-). Actually it's HTMLMimeMail - phpmailer is someone elses. :-

Re: [PHP] Sending mail with php-

2006-01-11 Thread Jochem Maas
Dotan Cohen wrote: On 1/10/06, Sameer N Ingole <[EMAIL PROTECTED]> wrote: Dear Dotan, You know cross-posting is bad..? ... actually I don't mind it - especially as I'm not on the apache or fedora lists ;-) and with regard to sending out emails I find using a connection with an SMTP server

Re: [PHP] Sending mail with php-

2006-01-10 Thread Dotan Cohen
t; > > > > Original Message > > > >>Date: Tuesday, January 10, 2006 07:03:17 PM +0530 > >>From: Sameer N Ingole <[EMAIL PROTECTED]> > >>To: php-general@lists.php.net > >>Subject: Re: [PHP] Sending mail with php- > >

Re: [PHP] Sending mail with php-

2006-01-10 Thread Sameer N Ingole
gt; To: php-general@lists.php.net Subject: Re: [PHP] Sending mail with php- Dear Dotan, Dotan Cohen wrote: On my home Fedora Core 4 box I run Apache 2.0. Sometimes when sending mail with php no mail is delivered, and I find this in the logs: <<< 550-Verification failed for <[EM

RE: [PHP] Sending mail with php-

2006-01-10 Thread Albert
Dotan Cohen wrote: > That most certainly is how I do it- just like TFM says! Actually, the > last field is a variable that is defined earlier, but I have outputed > it's contents to the screen to verify that it contains what it should. Have a look at PHPMailer (http://www.phpclasses.org/browse/pa

Re: [PHP] Sending mail with php-

2006-01-10 Thread Dotan Cohen
On 1/10/06, Albert <[EMAIL PROTECTED]> wrote: > Dotan Cohen wrote: > > But I still get the error! I did restart apache and even went so far as to > > reboot the machine. If I cannot modify the parameter within apache, > > then where should I modify it? Within php? Within sendmail? > > Look for the

Re: [PHP] Sending mail with php-

2006-01-10 Thread Sameer N Ingole
Dear Dotan, Dotan Cohen wrote: On my home Fedora Core 4 box I run Apache 2.0. Sometimes when sending mail with php no mail is delivered, and I find this in the logs: <<< 550-Verification failed for <[EMAIL PROTECTED]> <<< 550-unrouteable mail domain "localhost.localdomain" <<< 550 Sender verify

RE: [PHP] Sending mail with php-

2006-01-10 Thread Albert
Dotan Cohen wrote: > But I still get the error! I did restart apache and even went so far as to > reboot the machine. If I cannot modify the parameter within apache, > then where should I modify it? Within php? Within sendmail? Look for the "sendmail_from" parameter in the "mail function" section

RE: [PHP] Sending Mail (newbie)

2005-11-22 Thread schalk
Thanks All. I have got this working. -- Open WebMail Project (http://openwebmail.org) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Sending Mail (newbie)

2005-11-22 Thread mwestern
Have you tried a very simple email example to make sure your server is sending mail out. Is sendmail running and working? http://au2.php.net/function.mail > -Original Message- > From: schalk [mailto:[EMAIL PROTECTED] > Sent: Wednesday, 23 November 2005 9:12 AM > To: php-general@lists.

Re: [PHP] Sending mail directly to php

2005-04-05 Thread Richard Lynch
On Tue, April 5, 2005 7:43 am, ÞilvinasÐaltys said: > I have to create a script that could parse attachments that come from > another > server by mail. I could use crontab & pear pop to do the job. But maybe > someone knows if it is possible to configure my server in such way that it > could send m

Re: [PHP] Sending mail directly to php

2005-04-05 Thread Michael von Minden
Hi! You could create a shell php script that listens on port 25 and does what eg sendmail does... imho this would not be a good solution. A better solution would be to use procmail to feed the mail to your script after it was accepted by the mailserver. cheers ÞilvinasÐaltys wrote: > I have to

RE: [PHP] sending mail attachment problem

2004-11-15 Thread Jay Blanchard
[snip] I have a script that is supposed to use the mail function to send an email with an attachment... [/snip] http://www.zend.com/zend/spotlight/sendmimeemailpart1.php Have a look at this article, it'll shed some light on it -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] sending mail -- nullmailer

2004-10-08 Thread Matthew Sims
Does nullmailer have a sendmail wrapper? mail() in unix/linux looks for the sendmail binary. mail() on windows uses the settings in php.ini. -- --Matthew Sims -- > > > Ok, so I came across nullmailer, which seems to do exactly what I want - > forward mail to an existin

Re: [PHP] sending mail

2004-10-07 Thread Matthew Weier O'Phinney
* Greg Donald <[EMAIL PROTECTED]>: > On Thu, 7 Oct 2004 17:42:09 -0400, Josh Howe <[EMAIL PROTECTED]> wrote: > > Do I need to have sendmail configured on my linux box to send mail via PHP? > > Thanks! > > That or a sendmail wrapper script. Or use PEAR::Mail, which let's you use an SMTP server. --

RE: [PHP] sending mail

2004-10-07 Thread Matthew Sims
> > I'm sorry, I don't know what and MTA is. Can I configure PHP to use any > smtp > server? > MTA = Mail Transfer Agent http://us4.php.net/manual/en/ref.mail.php For unix/linux, PHP ignores the smtp settings in php.ini which means you'll need to setup sendmail for outside SMTP. -- --Matthew S

RE: [PHP] sending mail

2004-10-07 Thread Josh Howe
I'm sorry, I don't know what and MTA is. Can I configure PHP to use any smtp server? -Original Message- From: Matthew Sims [mailto:[EMAIL PROTECTED] Sent: Thursday, October 07, 2004 5:58 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] sending mail > > > Do I ne

Re: [PHP] sending mail

2004-10-07 Thread Greg Donald
On Thu, 7 Oct 2004 17:42:09 -0400, Josh Howe <[EMAIL PROTECTED]> wrote: > Do I need to have sendmail configured on my linux box to send mail via PHP? > Thanks! That or a sendmail wrapper script. -- Greg Donald Zend Certified Engineer http://gdconsultants.com/ http://destiney.com/ -- PHP Gener

RE: [PHP] sending mail

2004-10-07 Thread Jay Blanchard
[snip] Do I need to have sendmail configured on my linux box to send mail via PHP? Thanks! [/snip] http://us2.php.net/mail 1st paragraph called, strangley enough, "Requirements" -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] sending mail

2004-10-07 Thread Matthew Sims
> > > Do I need to have sendmail configured on my linux box to send mail via > PHP? > Thanks! Sendmail or any MTA will do. So yes, you need to have a working mail server. -- --Matthew Sims -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: htt

Re: [PHP] Sending mail() using 5.0.0

2004-07-30 Thread Jason Wong
On Friday 30 July 2004 19:00, Michael Purdy wrote: > I am running php 5.0.0 on Windows 2000 > > When using php-cgi.exe or php.exe for that matter I get the following error > when using MAIL() > > Warning: mail() [function.mail]: "sendmail_from" not set in php.ini or > custom "From:" header missing

Re: [PHP] Sending Mail Using PHP & MySQL

2004-07-03 Thread Harlequin
thanks Jason. works a treat now...! -- - Michael Mason Arras People www.arraspeople.co.uk - "Jason Everett" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > You have a " before $NewUserMail; on the first line, so everything

Re: [PHP] Sending Mail Using PHP & MySQL

2004-07-03 Thread Jason Everett
You have a " before $NewUserMail; on the first line, so everything until the next " is part of that variable. Since there's not a ; after the second ", you are getting the error. -- jason everett -- [EMAIL PROTECTED] -- http://twocannons.com On Sat, 3 Jul 2004 23:03:51 +0100, Harlequin <[EMAIL P

Re: [PHP] Sending Mail with PHP

2004-05-06 Thread Jordi Canals
Justin @ Dreaming in TO wrote: However, the page it redirects to is blank, except for the background image that is referenced in the CSS stylesheet. Feel free to test it as many times as you would like. mail($mailto, $subject, $messageproper, "From: \"$name\" <$email>\nReply-To: \"$name\" <

Re: [PHP] Sending Mail with PHP

2004-05-06 Thread John W. Holmes
From: "Justin @ Dreaming in TO" <[EMAIL PROTECTED]> > If you go to http://www.functionjunkie.org/contactform/contactform.php > and fill out the form, it sends the email ok, but its supposed to > redirect to a preset page, which it does. > > However, the page it redirects to is blank, except for the

Re: [PHP] sending mail with php on a linux box

2004-04-16 Thread John W. Holmes
From: "Chris W" <[EMAIL PROTECTED]> > I'm not sure if this is a PHP, Apache, Network, or sendmail > configuration but hopefully someone here will know. > > When I send email with PHP the from header is > > [EMAIL PROTECTED] > > I can't run a real mail server on my machine, so I want to change that

Re: [PHP] sending mail with php on a linux box

2004-04-16 Thread John Nichel
Chris W wrote: I'm not sure if this is a PHP, Apache, Network, or sendmail configuration but hopefully someone here will know. When I send email with PHP the from header is [EMAIL PROTECTED] I can't run a real mail server on my machine, so I want to change that email address to something else.

Re: [PHP] sending mail with attachment problems

2004-01-27 Thread memoimyself
Hello Tony, On 27 Jan 2004 at 16:47, tony wrote: > Hi, > > i'm trying to send emails with attachment but i get an error (...) I haven't even had a look at your code, but sending e-mails with attachments can be quite tricky, so I suggest that instead of trying to re-invent the wheel you use Ri

Re: [PHP] Sending mail using a password

2002-02-27 Thread R'twick Niceorgaw
From: "DL Neil" <[EMAIL PROTECTED]> To: "Svavar Lúthersson" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, February 27, 2002 11:39 AM Subject: Re: [PHP] Sending mail using a password > Greetings Svavar > > My SMTP server requests I use a pass

Re: [PHP] Sending mail using a password

2002-02-27 Thread DL Neil
Greetings Svavar My SMTP server requests I use a password for every time I send(not IP based). How is it possible to let PHP to use password authentication when mail is sent. =Eureka! I have been looking at this, and made a note to come back to take a look at a 'likely candidate'. Of course,

Re: [PHP] Sending mail without using mail()

2001-11-16 Thread R'twick Niceorgaw
grab a copy of phpmailer .. it does exactly what you want - Original Message - From: "Jaime Iniesta Aleman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 16, 2001 4:01 AM Subject: [PHP] Sending mail without using mail() > > > Ok, where can I find a tutorial about

Re: [PHP] Sending mail without using mai() ?

2001-11-14 Thread Andrey Hristov
I think that are some code which does what you want? Look at www.hotscripts.com, phpclasses.upperdesign.net Andrey Hristov IcyGEN Corporation http://www.icygen.com BALANCED SOLUTIONS - Original Message - From: "Jaime Iniesta Aleman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: We

RE: [PHP] Sending mail from PHP with SMTP server requiring authentication

2001-11-13 Thread Richard Heyes
> Hi gang, > Any one tried to send mail through PHP using mail() through an smtp server > which requires authentication ? http://www.phpguru.org/scripts/10/ -- Richard Heyes "If you have any trouble sounding condescending, find a Unix user to show you how it's done." - Scott Adams -- PHP Gene

RE: [PHP] Sending Mail via SMTP

2001-09-05 Thread Richard Heyes
> I would like to send mail via SMPT and I guess > some socket scripting should be done. > > any example? any help? Have a look at cvs.php.net --> php4 --> pear --> Mail There's an smtp class which should do what you're after iirc. It does have quite a few dependencies though, off the top of my

Re: [PHP] sending mail.. PLEASE HELP!

2001-04-12 Thread Tobias Talltorp
Or just adding this to the top of the page that is taking forever to process: set_time_limit(60); // 60 seconds before timeout, change to more if you want to This way you don´t have to change the time limit for all of the pages. // Tobias Talltorp > Are you doing a bulk mail out or something l

RE: [PHP] sending mail.. PLEASE HELP!

2001-04-12 Thread Jude Sanglitan
: RE: [PHP] sending mail.. PLEASE HELP! Are you doing a bulk mail out or something like that? Your script is timing out. The max_execution_time can be changed in php.ini Mick On Thu, 12 Apr 2001, Jude Sanglitan wrote: > Oops! How can I prevent this? > > Fatal error: Maximum execution t

RE: [PHP] sending mail.. PLEASE HELP!

2001-04-12 Thread Michael Hall
Are you doing a bulk mail out or something like that? Your script is timing out. The max_execution_time can be changed in php.ini Mick On Thu, 12 Apr 2001, Jude Sanglitan wrote: > Oops! How can I prevent this? > > Fatal error: Maximum execution time of 30 seconds exceeded in > C:\Inetpub\wwwr

RE: [PHP] sending mail.. PLEASE HELP!

2001-04-12 Thread Jude Sanglitan
Oops! How can I prevent this? Fatal error: Maximum execution time of 30 seconds exceeded in C:\Inetpub\wwwroot\TFC Survey Form\mailform.php on line 17 -JS -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTE

RE: [PHP] sending mail.. PLEASE HELP!

2001-04-12 Thread Jude Sanglitan
Hi thanks!!! I should've change my SMTP first.. geezz!! That makes me 10 times smarter than before. It is working now.! Thanks a lot! -Original Message- From: Plutarck [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 12, 2001 10:12 PM To: [EMAIL PROTECTED] Subject: Re:

Re: [PHP] sending mail.. PLEASE HELP!

2001-04-12 Thread Data Driven Design
I couldn't get it to work by changing php.ini either, I guess my isp mail server wouldn't relay. I downloaded a mailserver from www.tnsoft.com , its not free but it is an option if you get too frustrated trying to make it work. Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http

Re: [PHP] sending mail.. PLEASE HELP!

2001-04-12 Thread Plutarck
You need to alter your php.ini file in the mail section to point the proper path to sendmail, and you need some form of sendmail there for PHP to point to in the first place! So there's no just calling mail() without setting stuff up. -- Plutarck Should be working on something... ...but forgot

Re: [PHP] sending mail with PHP from web

2001-02-07 Thread Yamin Prabudy
ot;; - Original Message - From: Jon Haworth <[EMAIL PROTECTED]> To: 'Yamin Prabudy' <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, February 07, 2001 5:24 PM Subject: RE: [PHP] sending mail with PHP from web > Can we see some code? I run a very

RE: [PHP] sending mail with PHP from web

2001-02-07 Thread Jon Haworth
Can we see some code? I run a very similar thing (sending mails to around 500 people whose details are stored in a MySQL database and accessed via PHP) - the only difference is my OS is NT4 not FreeBSD. -Original Message- From: Yamin Prabudy [mailto:[EMAIL PROTECTED]] Sent: 07 February 2

Re: [PHP] sending mail with PHP from web

2001-02-06 Thread Steve Werby
"Yamin Prabudy" <[EMAIL PROTECTED]> wrote: > i had make a web interface to send announcement mail to my customers,..rite > now i had about 500 > once I send mail to my customers my server hang ( i guess to much open > file)...i complie by kernel again to get a big descriptor, but still worried > a