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"

[PHP] Sending mail from localhost

2009-05-30 Thread Sumit Sharma
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" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use

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

[PHP] Sending mail with Outlook high priority

2008-11-03 Thread Edward Diener
Is there any PHP functionality for sending mail and attaching a high priority to the mail item ? In Outlook ( and Outlook Express ) there is the notion of a high priority mail item, but I do not know if this corresponds to anything in an RFC for mail. Nor do I know how to mimic this in PHP. If

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

[PHP] sending mail from localhost

2007-06-13 Thread Ross
I usually use a phpmailer class but am creating something from scratch. when I use the most basic example I can find: $to = '[EMAIL PROTECTED]'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: [EMAIL PROTECTED]' . "\r\n" . 'Reply-To: [EMAIL PROTECTED]' . "\r\n" . 'X-M

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

[PHP] Sending mail on OS X

2007-06-08 Thread Christian Cantrell
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 messages in mail.loglike th

[PHP] Sending mail through another (SMTP authenticated) host

2007-04-02 Thread Mário Gamito
Hi, How can i use the mail function to send messages through another server that has authenticated SMTP ? Any help would be appreciated. Warm Regards -- :wq! Mário Gamito -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

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

2006-05-30 Thread blackwater dev
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 server? Thanks!

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

[PHP] Sending mail with php-

2006-01-10 Thread Dotan Cohen
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 failed So I changed the only ema

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
php-general@lists.php.net > Subject: [PHP] Sending Mail (newbie) > > Greetings All > > I am using the following script to send mail via PHP. The > script processes and send the mail but the message is never > displayed in the received email. Any pointers will

[PHP] Sending Mail (newbie)

2005-11-22 Thread schalk
Greetings All I am using the following script to send mail via PHP. The script processes and send the mail but the message is never displayed in the received email. Any pointers will be much appreciated. Thank you. Message From: "

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

[PHP] Sending mail directly to php

2005-04-05 Thread ÞilvinasÐaltys
Hello, 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 mail attachments directly to my php script. It's a lit

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,

[PHP] sending mail attachment problem

2004-11-15 Thread Angelo Zanetti
Hi all I have a script that is supposed to use the mail function to send an email with an attachment, however, when run the script I dont get any errors but in the body of the email there is a lot of mixed up text, which i presume is meant to be the attachment. Below is the code that performs the

[PHP] Sending Mail with PHP

2004-10-26 Thread Wiesiek
Hi I try to send mail (like http://www.php.net/mail) and it works fine. I define my own headers. But my question is about "wrong mail delivery". I use exim4.34. When I send mail via PHP script, then I see in my logs: 2004-10-26 11:04:36 1CMNFs-00046O-T9 <= [EMAIL PROTECTED] U=www-data P=local S

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

[PHP] sending mail -- nullmailer

2004-10-08 Thread Josh Howe
Ok, so I came across nullmailer, which seems to do exactly what I want - forward mail to an existing smtp server. But it isn't working. I'm using the mail() php function, and the mails aren't arriving. The same code works fine on a windows machine pointing to the same smtp server. Does anybody h

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

[PHP] sending mail

2004-10-07 Thread Josh Howe
Do I need to have sendmail configured on my linux box to send mail via PHP? Thanks!

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

[PHP] Sending mail() using 5.0.0

2004-07-30 Thread Michael Purdy
Folks 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 in e:\http\cgi\mail.php on line 4 When using php-win.

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

[PHP] Sending Mail Using PHP & MySQL

2004-07-03 Thread Harlequin
Hi again. New Hour, New Problem. I'm using the following code to user user input from a form on a previous page to send mail confirming registration: $To = "$NewUserMail; $Subject = "Welcome To Arras People's Registered Members Area"; $Message = "$NewUserID, \n\nWelcome to the arras People

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

[PHP] Sending Mail with PHP

2004-05-06 Thread Justin @ Dreaming in TO
Hey Everyone, I've got a problem with a mail program I'm using. 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 fo

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.

[PHP] sending mail with php on a linux box

2004-04-16 Thread Chris W
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. What config f

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

[PHP] sending mail with attachment problems

2004-01-27 Thread tony
Hi, i'm trying to send emails with attachment but i get an error at $file = fread($fp, $att_size); and i don't understand why, any help is appreciated. code is below $subject = $_REQUEST['subject']; $cc = $_REQUEST['cc']; $from= $_REQUEST['from']; $message = $_REQUEST['text']; $att

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,

[PHP] Sending mail using a password

2002-02-27 Thread Svavar Lúthersson
Greetings, 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. Thank you, Svavar Luthersson

[PHP] sending mail via SMTP server

2002-02-26 Thread Matthew Delmarter
I am using a script to send mail directly to the SMTP socket. It seemed to work OK for the first 200 emails - then stops sending them. Is there something I'm missing here? As you may be able to tell I'm trying to come to grips with how sockets/SMTP works. Is it like this... 1. I open the socket

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

[PHP] Sending mail without using mail()

2001-11-16 Thread Jaime Iniesta Aleman
Ok, where can I find a tutorial about sending mail using fsockopen ? *** > Hi, is it possible to send SMTP mail if the server where are my pages > hosted forbids the use of the mail() function ? I mean, by opening a > sockets connection to an external SMTP server and writing the commands > the

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

2001-11-14 Thread Andrey Hristov
IL PROTECTED]> Sent: Wednesday, November 14, 2001 2:53 PM Subject: [PHP] Sending mail without using mai() ? > Hi, is it possible to send SMTP mail if the server where are my pages > hosted forbids the use of the mail() function ? I mean, by opening a > sockets connection to an exter

[PHP] Sending mail without using mai() ?

2001-11-14 Thread Jaime Iniesta Aleman
Hi, is it possible to send SMTP mail if the server where are my pages hosted forbids the use of the mail() function ? I mean, by opening a sockets connection to an external SMTP server and writing the commands there directly... Jaime -- PHP General Mailing List (http://www.php.net/) To unsubsc

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

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

2001-11-13 Thread R'twick Niceorgaw
Hi gang, Any one tried to send mail through PHP using mail() through an smtp server which requires authentication ? Regards R'twick -- 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

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

[PHP] Sending Mail via SMTP

2001-09-05 Thread Aniceto Lopez
I would like to send mail via SMPT and I guess some socket scripting should be done. any example? any help? thanks Ani Lopez http://www.lamundial.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

[PHP] sending mail alternatives...

2001-05-16 Thread Christian Dechery
I have an account at f2s.com and it seems to me that is IMPOSSIBLE to send mail... I've got answers from other users there that got it working... I don't know how below are listed all the things I've tried to do: 1 - use mail() function (even tested with the most basic mail("myemail","tes

[PHP] Sending mail from a Unix

2001-05-11 Thread Jaime Torres
I'm running a couple of web scripts in a Unix system with Apache. I need to send an email message with some info but I have to do it using a SMTP running in another server on my network. How can I do this? I've tried setting the SMTP parameter in the php.ini file, but it'd only work if I'm runnin

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
[PHP] sending mail.. PLEASE HELP! 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

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

2001-04-12 Thread Data Driven Design
32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: Jude Sanglitan <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 12, 2001 10:16 AM Subject: [PHP] sending mail.. PLEASE HELP! > > If I was to send mail could I

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

[PHP] sending mail.. PLEASE HELP!

2001-04-12 Thread Jude Sanglitan
If I was to send mail could I possibly send it using mail() function or I need to setup some things to make it work properly? Everytime I run my PHP script, it always gives me an Error: Failed to Connect to c:\inetpub\wwwroot\ and it was pointing to my mail() function. I just followed what the b

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
2001 02:58 To: PHP List Subject: [PHP] sending mail with PHP from web Hi there,... 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

  1   2   >