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
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>
";
?>

Link to comment
Share on other sites

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>
';

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.