I'm trying to send mail out based partially on a
recordset/binding.

The fields are available but I'm not sure if they need
to be turned into a variable first or if I can just
reference them in the body of the email.

Here is what I tried:

$to = "$rsVendorJobs->Fields('Conmail')";
$subject = $rsVendorJobs->Fields('RefEm');
$body = '$cl';
$headers = "From: [EMAIL PROTECTED]";
mail($to,$subject,$body,$headers);
echo "Mail sent to $to";
}
K...so you know this didn't work.  I'm googling around
but haven't come up with anything on this subject. 
Appreciate some pointers please. 

Stuart

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to