Forum Moderators: coopster
<b>To leave the mailinglist:
<a href="%!unsubscription_link!%">%!unsubscription_link!%</a></b>
if ( ( ( $red_data["mail_format"] == "h" ¦¦ $red_data["mail_format"]!= "t" ) &&!empty( $html_mail_content ) )
¦¦ ($red_data["mail_format"] == "t" && empty( $text_mail_content ) ) )
{
$content = eregi_replace( "%!subscriber!%", $red_data["nick"], $html_mail_content );
$content = eregi_replace( "%!salutation!%", $salutation_phrase, $content );
$content = eregi_replace( "%!unsubscription_link!%", $us_link.$recipient_address, $content );
$mail->setText(null);
$mail->setHtml($content, null, null);
echo " (HTML) ";
$content = eregi_replace [php.net]( "%!unsubscription_link!%",
$us_link.$recipient_address, $content );
%!unsubscription_link!% found in the $content variable with the value in the $us_link.$recipient_address variable. That leads me to believe that
%!unsubscription_link!% is probably in a template somewhere or being dynamically generated elsewhere.