Re: [PHP] PHP Form email w/attachment

2008-12-18 Thread Per Jessen
jeffery harris wrote: I need to create a php form and mail it to a recipient (that I can do). My question is how do I create an area for a file (.doc, or .pdf) to be attached emailed along with other form data as well? Take a look at an email you've received with an attachment. That's how

Re: [PHP] PHP Form email w/attachment

2008-12-18 Thread Richard Heyes
thank god that some guys make it simple for us ;) You're welcome. :-) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 5th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP Form email w/attachment

2008-12-17 Thread jeffery harris
I need to create a php form and mail it to a recipient (that I can do). My question is how do I create an area for a file (.doc, or .pdf) to be attached emailed along with other form data as well? -Jeff -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] PHP Form email w/attachment

2008-12-17 Thread Bastien Koert
On Wed, Dec 17, 2008 at 11:02 PM, jeffery harris jhar...@harris4interactive.com wrote: I need to create a php form and mail it to a recipient (that I can do). My question is how do I create an area for a file (.doc, or .pdf) to be attached emailed along with other form data as well? -Jeff

Re: [PHP] PHP Form email w/attachment

2008-12-17 Thread Kastner Mario
use a mailer class, for example phpmailer, to handle this. man i say emailing could be a very crazy job for an coder. thank god that some guys make it simple for us ;) http://sourceforge.net/projects/phpmailer I need to create a php form and mail it to a recipient (that I can do). My

Re: [PHP] PHP Form email w/attachment

2008-12-17 Thread jeffery harris
Thanks for the info! sweet!! Kastner Mario off...@unite-it.at wrote in message news:200812180603.34938.off...@unite-it.at... use a mailer class, for example phpmailer, to handle this. man i say emailing could be a very crazy job for an coder. thank god that some guys make it simple for us

Re: [PHP] PHP and email

2005-11-23 Thread David Grant
Hi Angelo, Why not send them all in one go? If you want to reduce server load, you should perhaps adjust the 'nice'ness of the script. If you do the following: nice --adjustment=19 ./script.php Your script will run in the background and use only spare resources. Cheers, David Grant Angelo

Re: [PHP] PHP and email

2005-11-23 Thread Rory Browne
On 11/23/05, David Grant [EMAIL PROTECTED] wrote: Hi Angelo, Why not send them all in one go? If you want to reduce server load, you should perhaps adjust the 'nice'ness of the script. Because niceness would only affect the script itself and not any smtp servers it comes across along the

Re: [PHP] PHP and email

2005-11-23 Thread John Nichel
in an array #!/usr/local/bin/php ?php // Stuff to get email addresses // and create message foreach ( $emails as $email ) { mail ( $email, $subject, $message, $headers ); sleep ( 10 ); } ? YMMV -- John C. Nichel IV Programmer/System Admin (ÜberGeek) Dot Com Holdings

Re: [PHP] PHP and email

2005-11-23 Thread Angelo Zanetti
have the 8000 emails in an array #!/usr/local/bin/php ?php // Stuff to get email addresses // and create message foreach ( $emails as $email ) { mail ( $email, $subject, $message, $headers ); sleep ( 10 ); } ? YMMV Thanks to those who have replied so far, yes our main concern

RE: [PHP] PHP and email

2005-11-23 Thread Jim Moseby
have to think about the mail server. Say you have the 8000 emails in an array #!/usr/local/bin/php ?php // Stuff to get email addresses // and create message foreach ( $emails as $email ) { mail ( $email, $subject, $message, $headers ); sleep ( 10

Re: [PHP] PHP and email

2005-11-23 Thread John Nichel
the mail server. Say you have the 8000 emails in an array #!/usr/local/bin/php ?php // Stuff to get email addresses // and create message foreach ( $emails as $email ) { mail ( $email, $subject, $message, $headers ); sleep ( 10 ); } ? YMMV Thanks to those who have replied so

Re: [PHP] PHP and email

2005-11-23 Thread Manuel Lemos
Hello, on 11/24/2005 11:38 AM Angelo Zanetti said the following: Thanks to those who have replied so far, yes our main concern is the smtp server falling over or dying. So to come back to John Nichel's answer: John, have you done this personally and I assume the effects were good?? IE

[PHP] PHP and email

2005-11-22 Thread Angelo Zanetti
Hi I have a dedicated server in the states. I need to send about 8000 emails (once off). There pretty small +- 5KB. so I want to write a php script and run it from the command line in the background. I was thinking of sending 50 emails then waiting 90 seconds then sending again. Or the

[PHP] PHP Bespoke Email Solutions

2004-07-20 Thread Phil Ewington - 43 Plc
Hi All, I have been using a Windows platform for generating and sending bespoke emails from .csv format lists but have had to swap to a Linux solution. We are using Postfix instead of Visnetic as our mail server but need a replacement for our email generation software (WorldMerge). Does anyone

[PHP] php and email

2004-03-23 Thread Steven Mac Intye
Hi all, Im wondering if anyone can help me with this problem I have a form with the following line of code; $message .= a href=\http://127.0.0.1/devsite/activate.php?member=$realnamehash=$initPass\;Click here to activate/a\n; What I actually get is the following output; a

[PHP] php/mysql email

2004-03-19 Thread BigMark
I have a sports tipping script and instead of using the admin to close a round off or input results ,would it be possible to do it via an email. Mark -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP and email attachments

2004-01-22 Thread David T-G
Tim, et al -- ...and then Tim Thorburn said... % % Hi, Hi! % % A client of mine asked today if I could setup their current mass mailer to % send out attachments - I've never sent attachments with the mail() function % before, but before we get into that ... I wanted to ask an opinion of

Re: [PHP] PHP and email attachments

2004-01-22 Thread Raditha Dissanayake
I get over a thousand emails a day (29382 so far this month). When I get an important email that requires me to drag out the web browser, it immediately becomes pretty unimportant. not to mention the countless mails we recieved from you a couple of months ago on this mailing lists topic in both

Re: [PHP] PHP and email attachments

2004-01-22 Thread David T-G
Radith -- ...and then Raditha Dissanayake said... % % I get over a % thousand emails a day (29382 so far this month). When I get an important ... % not to mention the countless mails we recieved from you a couple of % months ago on this mailing lists topic in both the PHP and the qmail % list

[PHP] PHP and email attachments

2004-01-21 Thread Tim Thorburn
Hi, A client of mine asked today if I could setup their current mass mailer to send out attachments - I've never sent attachments with the mail() function before, but before we get into that ... I wanted to ask an opinion of the group. Would it not be better, rather than sending a file out to

Re: [PHP] PHP and email attachments

2004-01-21 Thread John Nichel
Tim Thorburn wrote: Hi, A client of mine asked today if I could setup their current mass mailer to send out attachments - I've never sent attachments with the mail() function before, but before we get into that ... I wanted to ask an opinion of the group. Would it not be better, rather than

Re: [PHP] PHP and email attachments

2004-01-21 Thread Raditha Dissanayake
Hi, You are dead right about not sending an attachment in the mail. Sure way to get yourself into the bad books. TO send attachements with simple old mail you have to make it into a MIME message there are classes in PEAR and some more at phpclasses that does just that. Finally if you are

Re: [PHP] PHP sending email contents as an attachment, not in thebody

2001-04-05 Thread Stuart J. Browne
"Lindsay Adams" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... According to the headers in your email, you are using Outlook Express. I think it is a microsoft issue. Because when I write a long email in OE, and send it to myself, I get it as an attachment.

[PHP] PHP sending email contents as an attachment, not in the body

2001-04-03 Thread Tom Pinder
I'm using PHP to send emails. The problem I have is that when the emails reach a certain length, the emails are sent with the email contents as an attachment, not as part of the body. I've looked thru all the mailing lists, but I can't find a reference to a similar problem. Has anyone come