[PHP] Re: mail() + localhost

2010-07-02 Thread Manuel Lemos
Hello, on 07/01/2010 10:09 AM Shreyas Agasthya said the following: PHP'ers, I am sure this would have been asked a zillion times but I take this as my turn to get some help. I hate to ask such rhetorical questions but quite couldn't understand how to tweak this. All I am trying to do is

[PHP] Re: Mail Function In PHP

2010-03-07 Thread Al
Use the Pear Mail package. In particular the smtp class. It will save you much grief and time. On 3/6/2010 11:54 PM, Kannan wrote: Hello I am creating a application for our college using the php.In that i want to send mail to all who are all the list. For that i am just simply use

[PHP] Re: mail mimedecode with multiple mails in one mbox file

2009-11-15 Thread Manuel Lemos
Hello, on 11/15/2009 05:22 PM Ashley Sheridan said the following: Hi all, I'm having a bit of difficulty seeing my way through this. I think I'm on the right path with mimeDecode, but I can't get it to read all of the emails in an mbox file which contains 100 emails; it only reads the

Re: [PHP] Re: Mail subject encoding breaks

2009-05-12 Thread Thodoris
Hello, on 05/11/2009 12:25 PM Thodoris said the following: This script seems to work ok in a freebsd development server I have but a linux production machine breaks the subject's encoding for some unexpected reason. The subject has a mix of English and Greek characters that FreeBSD seems

[PHP] Re: Mail subject encoding breaks

2009-05-11 Thread Manuel Lemos
Hello, on 05/11/2009 12:25 PM Thodoris said the following: This script seems to work ok in a freebsd development server I have but a linux production machine breaks the subject's encoding for some unexpected reason. The subject has a mix of English and Greek characters that FreeBSD seems to

Re: [PHP] Re: mail() is duplicating

2009-03-17 Thread Ashley Sheridan
On Fri, 2009-03-13 at 22:54 -0300, Manuel Lemos wrote: Hello, on 03/13/2009 05:37 PM Rick Pasotto said the following: I have several forms on my site that use the same sequence of events: The first script displays and validates the form data, the second reformats and asks for

Re: [PHP] Re: mail() is duplicating

2009-03-17 Thread Manuel Lemos
Hello, on 03/17/2009 05:34 PM Ashley Sheridan said the following: I have several forms on my site that use the same sequence of events: The first script displays and validates the form data, the second reformats and asks for confirmation or editing, and the third script sends the data in an

[PHP] Re: mail() is duplicating

2009-03-13 Thread Manuel Lemos
Hello, on 03/13/2009 05:37 PM Rick Pasotto said the following: I have several forms on my site that use the same sequence of events: The first script displays and validates the form data, the second reformats and asks for confirmation or editing, and the third script sends the data in an

[PHP] Re: mail() function HELP

2008-03-04 Thread Shawn McKenzie
Sofia Jacob (CA) wrote: I'm getting problems with the mail() function. ERROR: Warning: mail() [function.mail]: Failed to connect to mailserver at port 25, verify your SMTP and smtp_port setting in php.ini or use ini_set() in C:\wamp\www\php_sandbox\user_auth_fns.php on line 170

[PHP] Re: mail() takes too much time

2007-09-03 Thread Matthew Lasar
I run pretty simple mail group distribution program that uses php/mysql and the mail() function. I adapted it from an open source script. Most of the time it runs well. But it does take a while to run through all 150 members of the list. So I'm half glad that I don't have a list of 1000 people

[PHP] Re: mail() takes too much time

2007-09-03 Thread Colin Guthrie
Matthew Lasar wrote: I run pretty simple mail group distribution program that uses php/mysql and the mail() function. I adapted it from an open source script. Most of the time it runs well. But it does take a while to run through all 150 members of the list. So I'm half glad that I don't have

Re: [PHP] Re: mail() takes too much time

2007-09-03 Thread brian
Matthew Lasar wrote: I run pretty simple mail group distribution program that uses php/mysql and the mail() function. I adapted it from an open source script. Most of the time it runs well. But it does take a while to run through all 150 members of the list. So I'm half glad that I don't have

Re: [PHP] Re: mail() takes too much time

2007-09-03 Thread Stut
Matthew Lasar wrote: I run pretty simple mail group distribution program that uses php/mysql and the mail() function. I adapted it from an open source script. Most of the time it runs well. But it does take a while to run through all 150 members of the list. So I'm half glad that I don't have

[PHP] Re: mail() takes too much time

2007-09-03 Thread Colin Guthrie
Stut wrote: Matthew Lasar wrote: I run pretty simple mail group distribution program that uses php/mysql and the mail() function. I adapted it from an open source script. Most of the time it runs well. But it does take a while to run through all 150 members of the list. So I'm half glad that

Re: [PHP] Re: mail() takes too much time

2007-09-03 Thread Stut
Colin Guthrie wrote: Stut wrote: Matthew Lasar wrote: I run pretty simple mail group distribution program that uses php/mysql and the mail() function. I adapted it from an open source script. Most of the time it runs well. But it does take a while to run through all 150 members of the list. So

[PHP] Re: mail() takes too much time

2007-09-02 Thread Colin Guthrie
Stut wrote: Unless your script is actually hanging for the 4-6 hours this problem has nothing to do with PHP. How mail is delivered depends on the OS you are using, but usually it will get passed to a local MTA which then handles delivering it, at which point PHP involvement ends. I

Re: [PHP] Re: mail header questions

2006-12-01 Thread Chantal Rosmuller
The strange thing is that even the fifth parameter solution doesn't work. I use Postfix as MTA by the way. Strange - I use postfix on my dev server and it works fine. Are you running anything non-default in postfix (eg chroot) ? -- Postgresql php tutorials http://www.designmagick.com/

Re: [PHP] Re: mail header questions

2006-12-01 Thread Youri LACAN-BARTLEY
Hi there Chantal, Hi all, have you ever thought of using phpMailer or swiftmailer? That has solved me a lot of hassle with time, especially as far as correctly setting the Return-Path is concerned. Good luck ! Chantal Rosmuller wrote: The strange thing is that even the fifth parameter solution

Re: [PHP] Re: mail header questions

2006-11-29 Thread Chantal Rosmuller
On Wednesday 29 November 2006 00:45, Chris wrote: you will most likely change what I forgot to mention that I can't set the return-path either. That can *only* be an email address - you can't include a name in the return-path. Also it can't be changed if safe-mode is on for the server.

Re: [PHP] Re: mail header questions

2006-11-29 Thread Chris
Chantal Rosmuller wrote: On Wednesday 29 November 2006 00:45, Chris wrote: you will most likely change what I forgot to mention that I can't set the return-path either. That can *only* be an email address - you can't include a name in the return-path. Also it can't be changed if safe-mode is

Re: [PHP] Re: mail header questions

2006-11-28 Thread Chantal Rosmuller
Hi Manuel, 1) I can't get the From header right, when I receive the test mail the sender is apache There is From: and From . From is not a real header. It is just set by some MTA to the return path address and is also used as separator in mailbox files with multiple messages in the mbox

Re: [PHP] Re: mail header questions

2006-11-28 Thread Chris
Chantal Rosmuller wrote: Hi Manuel, 1) I can't get the From header right, when I receive the test mail the sender is apache There is From: and From . From is not a real header. It is just set by some MTA to the return path address and is also used as separator in mailbox files with multiple

[PHP] Re: mail header questions

2006-11-27 Thread Manuel Lemos
Hello, on 11/27/2006 05:14 PM Chantal Rosmuller said the following: I'm working on a mailform and it's kind of working but I still have 2 problems: 1) I can't get the From header right, when I receive the test mail the sender is apache There is From: and From . From is not a real header.

[PHP] Re: mail() encoded subject line

2006-10-16 Thread Colin Guthrie
Emil Edeholt wrote: Hi, I hope this is not too off topic but I have a problem when I use mail(). When I add the header Content-Type: text/plain; charset=UTF-8 the body of the mail is encoded fine but the subject is not encoded. I've tried to utf8_encode() and utf8_decode() the subject text

[PHP] Re: mail() encoded subject line

2006-10-16 Thread Manuel Lemos
Hello, on 10/16/2006 02:32 PM Emil Edeholt said the following: I hope this is not too off topic but I have a problem when I use mail(). When I add the header Content-Type: text/plain; charset=UTF-8 the body of the mail is encoded fine but the subject is not encoded. I've tried to

[PHP] Re: Mail que system written in PHP for Linux?

2006-07-16 Thread Manuel Lemos
Hello, on 07/15/2006 01:07 AM eastcoastguyz said the following: I have a client who's web site needs to send out opt-in e-mail. I contacted the web hosting service who they intend to host this with and they have a limit of 500 e-mail messages sent per hour. I suspect most web hosting services

Re: [PHP] Re: Mail in Spam Box

2006-06-19 Thread eqla3.com eqla3.com
is there an example of the correct code?

Re: [PHP] Re: Mail in Spam Box

2006-06-19 Thread eqla3.com eqla3.com
On 6/19/06, eqla3.com eqla3.com [EMAIL PROTECTED] wrote: is there an example of the correct code? is my messege get in the right place? === web archive a href=http://7b99.com/;./a

[PHP] Re: Mail in Spam Box

2006-06-18 Thread Manuel Lemos
on 06/18/2006 12:29 PM kartikay malhotra said the following: I've use PHP mail to send mail to my Gmail ID. But it gets delivered to my Spam box and not the Inbox :( Am I missing a header, signature, certificate? Maybe if you show how you are composing the message you are sending we can

Re: [PHP] Re: Mail in Spam Box - its working now

2006-06-18 Thread kartikay malhotra
Hey! Its working now. I replaced @mydomain with some valid mail address (gmail address) and the mail was delivered to the Inbox. Feel free to use the code if it helps. Attachments are allowed. Also, it works without a subject (for gmail), but the mail address I used now was genuine. Also

Fwd: [PHP] Re: Mail in Spam Box - my code

2006-06-18 Thread kartikay malhotra
Oops, sent this previous mail to Manuel instead of the group... :) Hi All! Sure, here is what I've: ?php $uploaddir='/tmp/'; $account_file = account.txt; //Substitute with a valid file on ur system $account_file = $uploaddir.basename($account_file); $file = fopen($account_file,'rb');

[PHP] Re: mail() and exim

2006-04-07 Thread Manuel Lemos
Hello, on 04/08/2006 12:11 AM Webmaster said the following: I'm not sure if this is the right list to ask this on or not Here's the situation... my php scripts were generating emails as expected. I was shocked when they told me that exim was not responding to requests on port 25 and

[PHP] Re: mail function

2006-02-27 Thread Cristian MARIN
I don't know exactly if this problem belongs to this news forum. This is more or less a SMTP question. The email servers names are kept into the mail MIME headers even if the message only passed through them and was then forwarded the servers names and IP's. This is done for anti-spam

[PHP] Re: mail() and Return-Path header

2006-02-02 Thread Barry
Søren Schimkat wrote: Hi Guys I'm using the mail function for sending mail, and I would like to specify the Return-Path header, but it would seem that PHP or Apache is modyfying the header. This is the simple code: mail('[EMAIL PROTECTED]', 'Subject', 'Message', From: [EMAIL PROTECTED]:

Re: [PHP] Re: mail() and Return-Path header

2006-02-02 Thread Søren Schimkat
Quoting Barry [EMAIL PROTECTED]: Søren Schimkat wrote: Hi Guys I'm using the mail function for sending mail, and I would like to specify the Return-Path header, but it would seem that PHP or Apache is modyfying the header. This is the simple code: mail('[EMAIL PROTECTED]',

Re: [PHP] Re: mail() and Return-Path header

2006-02-02 Thread Richard Lynch
On Thu, February 2, 2006 7:23 am, Barry wrote: Søren Schimkat wrote: Hi Guys I'm using the mail function for sending mail, and I would like to specify the Return-Path header, but it would seem that PHP or Apache is modyfying the header. This is the simple code: mail('[EMAIL

[PHP] Re: mail() with port authentication

2005-10-06 Thread Mark Rees
Do I need to use Pear to specify port 587 and authentication when sending mail? I could not find any way to do it using mail(). Windows or Unix? On Windows you can set the port by setting smtp_port in php.ini. Unix doesn't appear to have a direct equivalent, but you might be able to do

[PHP] Re: mail function-new line-security

2005-09-28 Thread A.J. Brown
I think you're thinking of spam injection through register_globals. If so, yes it is vulnerable. You need to force the variable data to come from the $_POST variable: [code] $name = $_POST['name']; $phone = $_POST['phone']; $user_mail = $_POST['user_mail']; $my_email = $_POST['my_email'];

[PHP] Re: Mail-format...

2005-09-22 Thread joshua may
I was having the same issue with one of my clients just today in fact. We just filtered the email addresses to ensure they're valid. There's a million regex's out there to do this for you.. Cheers Josh Gustav Wiberg wrote: Hi there! I wonder why I get get these kind of mails (look down

Re: [PHP] Re: Mail-format...

2005-09-22 Thread Gustav Wiberg
- Original Message - From: joshua may [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Thursday, September 22, 2005 9:50 AM Subject: [PHP] Re: Mail-format... I was having the same issue with one of my clients just today in fact. We just filtered the email addresses to ensure

Re: [PHP] Re: Mail-format...

2005-09-22 Thread M. Sokolewicz
Gustav Wiberg wrote: - Original Message - From: joshua may [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Thursday, September 22, 2005 9:50 AM Subject: [PHP] Re: Mail-format... I was having the same issue with one of my clients just today in fact. We just filtered the email

Re: [PHP] Re: Mail-format...

2005-09-22 Thread Gustav Wiberg
- Original Message - From: M. Sokolewicz [EMAIL PROTECTED] To: Gustav Wiberg [EMAIL PROTECTED] Cc: php-general@lists.php.net; joshua may [EMAIL PROTECTED] Sent: Thursday, September 22, 2005 5:24 PM Subject: Re: [PHP] Re: Mail-format... Gustav Wiberg wrote: - Original Message

[PHP] Re: Mail-id validation script

2005-08-13 Thread Manuel Lemos
Hello, on 08/13/2005 01:49 AM Nahalingam Kanakavel said the following: This is naha, I am very new to PHP as well as this group, I am in need of your guidence all my way. Now I am doing a project using PHP, in that I created a form. That form has a field called e-mailid, to validate that I

[PHP] Re: mail()===false but msg is sent!

2005-07-02 Thread Jasper Bryant-Greene
Andy Pieters wrote: So what I do is ( $header=header for multipart mime message; $body=body with multipart mime message; $result=mail(Name Firstname $address,Subject,$message,$header); echo ($result?ok:bogus); Well, firstly your subject does not match what you're doing. PHP is weakly-typed,

[PHP] Re: mail()===false but msg is sent!

2005-07-02 Thread Manuel Lemos
Hello, on 07/02/2005 07:11 PM Andy Pieters said the following: Hi all I have this situation where mail() returns a false status but the message is actually accepted AND reaches destination! The PHP Version is 4.3.10, the OS Linux So what I do is ( $header=header for multipart mime

[PHP] Re: mail() Alternative?

2005-03-23 Thread Manuel Lemos
Hello, on 03/23/2005 04:14 PM Dan Joseph said the following: I've had a production system moved to a new server. Our geniuses here have refused to allow sendmail on the server and all my e-mail functions are now gone. Is there a way around this? I have already checked the manual, I don't see

[PHP] Re: mail() takes a long time to process

2005-02-27 Thread Manuel Lemos
Hello, on 02/26/2005 09:25 PM Dustin Krysak said the following: Hi there, I have a script that uses the mail() function, but for some reason the script takes a really long time to finish processing (like 5 minutes). there are some other functions performed (like sql insert, etc) that happen

[PHP] Re: mail problem at interland

2005-02-01 Thread kids_pro
Does PEAR installed in most Linux hosting box? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mail problem at interland

2005-02-01 Thread kids_pro
Does PEAR installed in most Linux hosting box? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mail problem at interland

2005-01-29 Thread Ben Ramsey
David Edwards wrote: Hi, I have a fairly simple script written that uses the mail() function on a client site hosted at Interland. I have used a similar script quite a few times before with no problem. However although the script generates no errors, no emails appear at their intended

[PHP] Re: mail problem at interland

2005-01-28 Thread Manuel Lemos
Hello, on 01/28/2005 12:09 AM David Edwards said the following: I have a fairly simple script written that uses the mail() function on a client site hosted at Interland. I have used a similar script quite a few times before with no problem. However although the script generates no errors, no

[PHP] Re: mail with attachment

2004-12-09 Thread Dre
I did not try it yet .. but I will Manuel Lemos [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello, Dre wrote: Thanks Manuel, I will check the class and here is the code of the mail sending script //== ?php

[PHP] Re: mail with attachment

2004-12-08 Thread Manuel Lemos
Hello, Dre wrote: I'm trying to send a mail with attachment, using mail() fucntion .. the mail is sent with the attached file, but when I open my mail box to check the mail I sent using my script, I find the normal text contents and the attachment displayed as text too !!! ex. if I attached a

[PHP] Re: mail with attachment

2004-12-08 Thread Dre
Thanks Manuel, I will check the class and here is the code of the mail sending script //== ?php $att_name = $_POST['att']; echo $att_name; $att_size = filesize($att_name); $handle= fopen($att_name, r); $file = fread($handle,

[PHP] Re: mail with attachment

2004-12-08 Thread Manuel Lemos
Hello, Dre wrote: Thanks Manuel, I will check the class and here is the code of the mail sending script //== ?php $att_name = $_POST['att']; echo $att_name; $att_size = filesize($att_name); $handle= fopen($att_name, r); $file

[PHP] Re: mail problems - phpinfo information

2004-10-13 Thread Manuel Lemos
Hello, On 10/13/2004 01:41 PM, Jed R. Brubaker wrote: I have been having all kinds of problems with the mail() function in PHP. I realize that there are problems inheritly, but I think I am still trying to track down the problem. My latest theory is that PHP isn't set up to work with the right

Re: [PHP] Re: mail() and Verizon

2004-10-01 Thread Sam Smith
Hello, On 10/01/2004 12:47 AM, Sam Smith wrote: Can anyone tell why the mail (see below) is not being relayed to [EMAIL PROTECTED]: #Note: There were 2 To: addresses. Below is the header from the successful mail to the second address. Each address will receive different message

Re: [PHP] Re: mail() and Verizon

2004-10-01 Thread Sam Smith
have you tried sending the same message, via the same path (i.e., smtp server), but not generated via php, to this recipient? by same that includes the same rfc821 from/return-path. I logged on to the web server where php is running and did telnet localhost 25 hello ... The mail was reported

Re: [PHP] Re: mail() and Verizon

2004-10-01 Thread Mark
--- Sam Smith [EMAIL PROTECTED] wrote: have you tried sending the same message, via the same path (i.e., smtp server), but not generated via php, to this recipient? by same that includes the same rfc821 from/return-path. I logged on to the web server where php is running and did telnet

[PHP] Re: mail() and Verizon

2004-09-30 Thread Manuel Lemos
Hello, On 10/01/2004 12:47 AM, Sam Smith wrote: Can anyone tell why the mail (see below) is not being relayed to [EMAIL PROTECTED]: #Note: There were 2 To: addresses. Below is the header from the successful mail to the second address. Each address will receive different message copies. -- Regards,

[PHP] Re: mail function and qmail

2004-09-26 Thread M. Sokolewicz
Php Mysql wrote: mail function in php requires to use 'sendmail'. But I have only 'qmail' on the box. How I can send email in PHP? Thanks just pretend it doesn't say sendmail but qmail. It works on both :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: mail function and qmail

2004-09-26 Thread Catalin Trifu
Php Mysql wrote: mail function in php requires to use 'sendmail'. But I have only 'qmail' on the box. How I can send email in PHP? Thanks Hi, After u installed qmail, there is a qmail compatible sendmail created for you in /var/lib/qmail/bin (i think that's where it should be). As qmail

[PHP] Re: mail() function problem

2004-09-02 Thread Dre
is that mean that I don't really have to install any mail server or sendmail prgram on my testing server?? Jasper Howard [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] i use apache on my windows xp machine and have never gotten around to settings up any kind of sendmail program, I'm

Re: [PHP] Re: mail() function problem

2004-09-02 Thread Dre
Message- From: Dre [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 01, 2004 6:48 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: mail() function problem Sorry .. but I'm really so new at this I'm using Apache Server on a MS Windows XP Pro. OS, and I'm trying to send a mail

[PHP] Re: Mail Functions help

2004-09-01 Thread AceZero2790
I did some research and found out that my ISP's SMTP server is smtp.comcast.net. If I configure my mail functions to connect to this should my script be able to send e-mails? Research and Experimentation (yes, I did some!): I tried connecting to it using this telnet command: telnet

Re: [PHP] Re: Mail Functions help

2004-09-01 Thread John Holmes
From: [EMAIL PROTECTED] Did it work? So if I put smtp.comcast.net in php.ini should my e-mail script work? I don't know about you, but my magic-php-8-ball says Yes! http://www.amazon.com/exec/obidos/ASIN/B1ZWV7/indrasnet/002-7362067-2944804 Make sure you restart your webserver after the

Re: [PHP] Re: Mail Functions help

2004-09-01 Thread Jason Wong
On Wednesday 01 September 2004 22:50, [EMAIL PROTECTED] wrote: I did some research and found out that my ISP's SMTP server is smtp.comcast.net. That's what we like to see. If I configure my mail functions to connect to this should my script be able to send e-mails? Research and

[PHP] Re: mail() function problem

2004-09-01 Thread Jasper Howard
do you have a sendmail program on your testing server? -- -- Jasper Howard :: Database Administration Velocity7 1.530.470.9292 http://www.Velocity7.com/ -- Dre [EMAIL

[PHP] Re: mail() function problem

2004-09-01 Thread Dre
I'm using an Apache server .. doesn't it come with a sendmail program ?? I really don't know Jasper Howard [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] do you have a sendmail program on your testing server? -- --

[PHP] Re: mail() function problem

2004-09-01 Thread Dre
Sorry .. but I'm really so new at this I'm using Apache Server on a MS Windows XP Pro. OS, and I'm trying to send a mail through a form .. what do I need to install or configure to be able to do this. thanks in advance Dre [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I'm using an

[PHP] Re: mail() function problem

2004-09-01 Thread Jasper Howard
i use apache on my windows xp machine and have never gotten around to settings up any kind of sendmail program, I'm pretty sure you have to download one or atleast its some extra configuration. -- -- Jasper Howard :: Database

Re: [PHP] Re: mail() function problem

2004-09-01 Thread Pahlevanzadeh Mohsen
Please switch to a UNIX box.For example Fedora. Because it has everythings that you need. --- Dre [EMAIL PROTECTED] wrote: I'm using an Apache server .. doesn't it come with a sendmail program ?? I really don't know Jasper Howard [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]

Re: [PHP] Re: mail() function problem

2004-09-01 Thread Pahlevanzadeh Mohsen
If you use Windows as your server,You must install M$Exchange server.It is a mailserver under Windows. Of course,If you want to install Linux,I can help u. It has benefit for u. Even i made a group on yahoo phplovers. You can join to my group will get help. It has 56 members. My email address is

RE: [PHP] Re: mail() function problem

2004-09-01 Thread Lone Wolf
PROTECTED] Subject: [PHP] Re: mail() function problem Sorry .. but I'm really so new at this I'm using Apache Server on a MS Windows XP Pro. OS, and I'm trying to send a mail through a form .. what do I need to install or configure to be able to do this. thanks in advance Dre [EMAIL

[PHP] Re: Mail module array limits

2004-08-17 Thread Manuel Lemos
Hello, On 08/17/2004 02:17 PM, Sandy Keathley wrote: I want to send emails to 2700 addresses selected from a MySQL database (an opt-in list). I am using the Mail module, assembling the addresses into an array, and passing that to the module. I have done this before with a few hundred

[PHP] Re: mail() on *nix using ssmtp or an external smtp server?

2004-08-16 Thread Manuel Lemos
Hello, On 08/16/2004 10:00 AM, Markus Mayer wrote: - Does anyone know of a way to make PHP on *nix use an external smtp server without having to hack around in the source code of PHP? - Has anyone got either ssmtp or esmtp working with PHP? You may want to try this class that can be used to do

[PHP] Re: mail() and the From: attribute...

2004-08-13 Thread Manuel Lemos
Hello, On 08/13/2004 09:23 AM, Tristan Pretty wrote: I'm sending out a mail, en mass to about 25 people, using the while loop from a MySQL query... Anyhoo, In the mail() function, if I use the final field for the From: attribute. I'm having probs... HAving: ...From: [EMAIL PROTECTED]); doesn't

[PHP] Re: Mail() not working

2004-07-31 Thread Tularis
Robin Wilson wrote: Hi I get the following error message: Fatal error: Call to undefined function: mail() in /srv/www/htdocs/blog/serendipity_functions.inc.php on line 1394 I have changed my php.ini file to find the correct path to sendmail and to put an option on the end (-f [EMAIL PROTECTED]) to

[PHP] Re: mail problem

2004-07-11 Thread Tim Van Wassenhove
In article [EMAIL PROTECTED], Joao Gomes wrote: [mail function] ; For Win32 only. SMTP = [EMAIL PROTECTED] I don't think [EMAIL PROTECTED] is a valid hostname. -- Tim Van Wassenhove http://home.mysth.be/~timvw -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: mail problem

2004-07-11 Thread John Taylor-Johnston
You don't need sendmail. In php.ini you need to add something. SMTP = [EMAIL PROTECTED] is not right? You want an address, not an email. SMTP = smtp.uol.com.br is more likely the correct address. Joao Gomes wrote: Hi, I am a beginner in php and I am trying to send emails from my machinne,

[PHP] Re: mail program

2004-06-28 Thread Torsten Roehr
Syed Ghouse [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi all i want to send more than 1000 mails from php program at a time.how can i send it and will the execution of program become slow. pls reply to the above ASAP syed Please search the mailing list archive at:

[PHP] Re: mail program

2004-06-28 Thread pete M
http://phpmailer.sourceforge.net/ check the tutorials Syed Ghouse wrote: Hi all i want to send more than 1000 mails from php program at a time.how can i send it and will the execution of program become slow. pls reply to the above ASAP syed -- PHP General Mailing List

[PHP] Re: mail program

2004-06-28 Thread Manuel Lemos
Hello, On 06/28/2004 10:02 AM, Syed Ghouse wrote: i want to send more than 1000 mails from php program at a time.how can i send it and will the execution of program become slow. It depends on your environment. Are you running PHP on Linux/Unix or Windows? If it is Linux/Unix, does it use as local

[PHP] Re: mail() problem

2004-06-03 Thread Ben Ramsey
I would also suggest adding the following headers to the message, as they are supposed to help keep the spam filters from recognizing a message as spam: X-Priority: 3 X-MSMail-Priority: Normal Of course, you can read up on the various priority levels and change them if you want, but these

[PHP] Re: mail() problem

2004-06-02 Thread Ligaya Turmelle
minor suggestion: make sure you have a from address. Respectfully, Ligaya Turmelle Rick [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi All, Does anyone know a good format for sending email using the mail() function that doesnt get stopped by antispam software? I need to

[PHP] Re: mail() problem

2004-06-02 Thread Stephen Lake
Another suggestion is if its an HTML format mail, make sure you use properie making sure all tags are closed that kind of stuffsome software will block if the HTML is not well formed Rick [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi All, Does anyone know a good

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

2004-05-18 Thread David Robley
[EMAIL PROTECTED] (C.F. Scheidecker Antunes) wrote in news:[EMAIL PROTECTED]: Hello all, I have updated an old system to Fedora 1 and php php-4.3.4-1.1. However the mail comand does not work anymore. The php.ini of the original system did not have anything special. Sendmail is not

[PHP] Re: mail() and passwords

2004-03-09 Thread Manuel Lemos
Hello, On 03/09/2004 05:37 AM, Will wrote: How do I modify the following to except a password for the SMTP server? The mail function does not support authentication. You may want to try this class that comes with a wrapper function named smtp_mail(). It emulates the mail() function except

[PHP] RE: mail() and passwords

2004-03-09 Thread Will
I figured out how to do it. This is what I put in the php.ini file: SMTP = mydomains_smtp_server.com sendmail_from = [EMAIL PROTECTED] This worked great!!! It is sent right to a SMTP which is setup to authenticate all outgoing mails. ~WILL~ -Original Message- From: Manuel Lemos

[PHP] Re: Mail Function

2004-03-08 Thread Will
Please help me with this. Can someone give me an example of their php.ini on the settings of the mail function. ~WILL~ Will wrote: Hello All, I have a question. I installed PHP on a windows XP machine. When I try to send a form it says: Warning: mail(): sendmail_from not set in php.ini or

Re: [PHP] Re: Mail Function

2004-03-08 Thread Tom Rogers
Hi, Tuesday, March 9, 2004, 12:05:22 AM, you wrote: W Please help me with this. Can someone give me an example of their W php.ini on the settings of the mail function. W ~WILL~ A wild guess but try it with \r\n as line endings, I don't run the server under windows so can't help with the ini

Re: [PHP] Re: Mail Function

2004-03-08 Thread Stuart
Will wrote: My sendmail_from is as follows: sendmail_from = [EMAIL PROTECTED] Did you restart Apache (assuming you're using the module) after making this change? -- Stuart -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2004-02-29 Thread Michael Kunze
Juergen Mueller Pro.Vider.De Gmbh wrote: does anybody know a simply mailing function, which does open a smtp connection to an mailserver, sends say 20 mails with different bodies to that mailserver and than closes the smtp connection again? phpmailer.sh.net use $mail-SMTPKeepAlive() --

[PHP] Re: mail()

2004-02-18 Thread Juan Torres
thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mail()

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

[PHP] Re: mail()

2004-02-16 Thread Manuel Lemos
Hello, On 02/16/2004 08:26 AM, Juan Torres wrote: I have a problem with mail() function. I'm using PHP with Windows 2000 Professional and Internet Information Server 5.0. My php code is: mail([EMAIL PROTECTED], Prueba Envio Email PHP, Linea 1\nLinea 2\nLinea 3); And my browser shows: Warning:

[PHP] Re: Mail function problem

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

[PHP] Re: Mail function problem

2004-01-10 Thread Manuel Lemos
Hello, On 01/10/2004 11:36 AM, Rolf Berkenbosch wrote: I have a big problem with the mail function in PHP. I have installed PHP 4.3.3. But no email where send With the mail function. If I run this script as root. There Is no problem.. What do I need to change?? Which platform as you using,

[PHP] Re: mail question (mime)

2003-12-16 Thread Justin Patrin
You may want to try using PEAR's Mail_Mime class. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: mail question (mime)

2003-12-16 Thread Cesar Cordovez
...and talking about mail, is there a class to parse an incoming mail? Let me explain: I'm using the great POP3 pear class to receive mail, but I'm having trouble separating the different parts in an multipart/alternative type of msg. Is there a class to receive the result from POP3 class and

  1   2   3   4   >