Not entirley sure what you're trying to do but, if the '.box_header' and '.box_footer' 
are css 
classes, then it won't show up in people's text-only email.

if not then try removing the second periods '.'
so i tlooks like:

$body .= "box_header('test').";
$body .= "<h1>text</h1>";
$body .= "box_footer().";

HTH
Russ


$body .= ".box_header('test').";
$body .= "<h1>text</h1>";
$body .= ".box_footer().";
On Sun, 21 Oct 2001 20:06:55 +0200 Luditus <[EMAIL PROTECTED]> wrote:

> Hi there,
> 
> I am trying to send an email with html tags coming from functions.
> Something is wrong with asigning the value to the variable. I guess I don't
> know the proper syntax.
> 
> Can anybody help me out?
> 
> e.g.:
> 
> $body .= ".box_header('test').";
> $body .= "<h1>text</h1>";
> $body .= ".box_footer().";
> 
> 
> Thanx in advance
> 
> Luditus
> 
> 
> 
> 
> -- 
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
> 

#-------------------------------------------------------#
                                
  "Believe nothing - consider everything"       
  
  Russ Michell
  Anglia Polytechnic University Webteam
  Room 1C 'The Eastings' East Road, Cambridge
  
  e: [EMAIL PROTECTED]
  w: www.apu.ac.uk/webteam

  www.theruss.com
                        
#-------------------------------------------------------#


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to