RE: [PHP] variables in e-mail 2nd

2003-10-17 Thread Daevid Vincent
> -Original Message- > From: Daevid Vincent [mailto:[EMAIL PROTECTED] > Sent: Friday, October 17, 2003 10:55 AM > To: 'christian tischler'; [EMAIL PROTECTED] > Subject: RE: [PHP] variables in e-mail 2nd > > What I do is make a PHP page/template with php v

RE: [PHP] variables in e-mail 2nd

2003-10-17 Thread Daevid Vincent
What I do is make a PHP page/template with php variables in place. Then do something like this... $report = "path/to/mytemp.php"; $today = date(); ob_start(); include($report); $message = ob_get_contents(); ob_end_clean(); //echo $message;

Re: [PHP] variables in e-mail 2nd

2003-10-17 Thread Marek Kilimajer
christian tischler wrote: $messagepart2 = (echo $salutation); $messagepart2 = $salutation; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] variables in e-mail 2nd

2003-10-17 Thread David Otton
On Fri, 17 Oct 2003 15:09:48 +0100, you wrote: >I would like to use a form in a html page to pass the variables to a php >page, which sends an mail including these variables. > >All I get in the mail though is a 1 rather than the string that I put into >the form??? > >Can anyone help please! > >So