What is the problem with this following code?
class EMAIL_BODY{
public $REGISTRATION = <<<EOF
<html>
<head>
</head>
<body style='font-family: helvetica;'>
Welcome <b>#{FIRST}</b>, <br/> You have successfully created your account.
However, there is one more step that you need to take to verify your account.
Please click the below given link to activate your account.
Unless you do that your account won\'t get activated. <br/>
<a> #{LINK} </a>
</body>
</html>
EOF;
}
You must put the closing delimiter of your heredoc
EOF;right at the start of the line:So: