[PHP-DB] php mail() question

2003-12-14 Thread JeRRy
Hi, Php mail() question. I use php mail() frequently, dragging data from a mysql database. I am not sure if this is possible but thought I'd throw it on this board. in php mail() function you can set a return_address etc. Is it possible to change this and run a query? I mean if the email

Re: [PHP-DB] PHP mail() question?

2003-04-02 Thread rolf vreijdenberger
function htmlemailheaders($from=somename[EMAIL PROTECTED],$CC=,$BCC=){ //three arguments, last two optional // http://www.mindspring.com/~mgrand/mime.html voor mime specificaties $mailheaders = NULL;//initi $mailheaders .= From: $from\r\n;//waarde van eerste argument van de functie $mailheaders

RE: [PHP-DB] PHP mail() question?

2003-04-01 Thread Gavin Amm
= $row['email'] mail($contactemail, $subject, $message, $headers); } Cheers, Gav -Original Message- From: JeRRy [mailto:[EMAIL PROTECTED] Sent: Tuesday, 1 April 2003 9:05 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] PHP mail() question? Hi, I am trying to get PHP mail() to do

[PHP-DB] PHP mail() question?

2003-03-31 Thread JeRRy
Hi, I am trying to get PHP mail() to do the following: 1) Grab email addresses from a database and put in the BCC of the email. (hidding their email address) 2) Grab first names from a database and put in the body of the email. Below is a script I am using, does not do any queries to any

RE: [PHP-DB] PHP mail() question?

2003-03-31 Thread Jennifer Goodie
: Monday, March 31, 2003 3:05 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] PHP mail() question? Hi, I am trying to get PHP mail() to do the following: 1) Grab email addresses from a database and put in the BCC of the email. (hidding their email address) 2) Grab first names from a database and put

[PHP-DB] php mail() question?

2003-03-27 Thread JeRRy
Hi, I am using a 'basic' PHP mail() function that works fine when inputting data and information for it to send. But now I want to do the following: 1) Fetch email addresses from a mysql database and put them as Bcc: so emails are always hidden. Or some other method? (would be ideal to have