@kiddan01
I believe plugin author is either telling you that there is no official option for your request or he might be afraid of other violations that will lead to the plugin author, but…
Of course it is possible to remove the unsubscribe link.
Locate plugin folder and bft-autoresponder.php file.
Go to line 447 below // add unsubscribe link.
Remove this:
$unsub_url = get_option(‘siteurl’).”/?bft=bft_unsubscribe&email=”.$member->email;
if(strstr($message, ‘{{{unsubscribe-url}}}’) or strstr($message, ‘{{{unsubscribe-link}}}’)) {
$message = str_replace(‘{{{unsubscribe-url}}}’, $unsub_url, $message);
$message = str_replace(‘{{{unsubscribe-link}}}’, ‘‘.$unsub_url.’‘, $message);
}
else {
// add the default one
if($content_type == ‘text/html’) {
$message.= “<br><br>”.__(‘To unsubscribe from our list visit the url below:’, ‘broadfast’).
“<br>$unsub_url“;
$message=str_replace(“\t”,””,$message);
}
else {
$message.= “\n\n”.__(‘To unsubscribe from our list visit the url below:’, ‘broadfast’).”\n”.$unsub_url;
}
}
Thats it!