The unsubscribe link wasn't working for me when clicked in the mail received by visitors. It added an "UNSUBSCRIBE" word juft before the mail causing problems (the visitor email didn't disappeared fom my DB)

I figured out the mail was sent in
newsletter_subscribe.php.

Then I replaced in line 54 :

$message .= EMAIL_WELCOME . CLOSING_BLOCK1 . CLOSING_BLOCK2 . CLOSING_BLOCK3 . UNSUBSCRIBE . $HTTP_POST_VARS['Email'] ;

WITH

$message .= EMAIL_WELCOME . CLOSING_BLOCK1 . CLOSING_BLOCK2 . CLOSING_BLOCK3 . $HTTP_POST_VARS['Email'] ;
mail(strtolower($HTTP_POST_VARS['Email']), EMAIL_WELCOME_SUBJECT, $message, "From: " . EMAIL_FROM);

==> Just took off the "UNSUBSCRIBE ."
>>>IT WORKS now.

BE CAREFUL : I'm a complete newbie. I solved this only using logic and thought about sharing it.
That said, don't use it if you don't have this problem!

PS : Nothing more in attached file.

More...