Jump to content

[SOLVED] php variable in email


stockdalep

Recommended Posts

Hi

 

I have a HTML email and inside this I need to use a PHP variable that contains a string with html line breaks inside it.

 

Can this be done.

 

Thanks for any help.

 

 

$message ='

<html>

<body bgcolor="#FFFFCC" text="#000000">

<div align="center">

<h1>Thank you for registering</h1>

<br>

<table width="385" border="0" cellspacing="2" cellpadding="2" height="74">

    <tr bgcolor="#CC9900">

          <td>"$items"</td>          </tr>

  </table>

</div>

</body>

</html>

';

Link to comment
https://forums.phpfreaks.com/topic/48116-solved-php-variable-in-email/
Share on other sites

try this one, it works on my pages,

<?php
$message ="
<html>
<body bgcolor='#FFFFCC' text='#000000'>
<div align='center'>
<h1>Thank you for registering</h1>


<table width='385' border='0' cellspacing='2' cellpadding='2' height='74'>
    <tr bgcolor='#CC9900'>
           <td> $items </td>           </tr>
  </table>
</div>
</body>
</html>
";
?>

If you want your way with the single quote working, do this

 

$message ='
<html>
<body bgcolor="#FFFFCC" text="#000000">
<div align="center">
<h1>Thank you for registering</h1>


<table width="385" border="0" cellspacing="2" cellpadding="2" height="74">
    <tr bgcolor="#CC9900">
           <td>'.$items.'</td>           </tr>
  </table>
</div>
</body>
</html>
';

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.