CRM-20746 - CiviMail - Use body_text for text part of resubscription confirmation...
authorThomas Schüttler <tschuettler@oxfam.de>
Mon, 19 Jun 2017 10:38:26 +0000 (12:38 +0200)
committerThomas Schüttler <tschuettler@oxfam.de>
Mon, 19 Jun 2017 10:38:26 +0000 (12:38 +0200)
----------------------------------------
* CRM-20746: CiviMail - text part of resubscribe confirmation mail contains html
  https://issues.civicrm.org/jira/browse/CRM-20746

CRM/Mailing/Event/BAO/Resubscribe.php

index 67639702e7f5220370e6abb5c8629d2a2a1e17ee..ac361de23c9ab0a532d17b044a8a558093fd0be2 100644 (file)
@@ -260,7 +260,7 @@ class CRM_Mailing_Event_BAO_Resubscribe {
       $message->setHTMLBody($html);
     }
     if (!$html || $eq->format == 'Text' || $eq->format == 'Both') {
-      $text = CRM_Utils_Token::replaceDomainTokens($html, $domain, TRUE, $tokens['text']);
+      $text = CRM_Utils_Token::replaceDomainTokens($text, $domain, TRUE, $tokens['text']);
       $text = CRM_Utils_Token::replaceResubscribeTokens($text, $domain, $groups, FALSE, $eq->contact_id, $eq->hash);
       $text = CRM_Utils_Token::replaceActionTokens($text, $addresses, $urls, FALSE, $tokens['text']);
       $text = CRM_Utils_Token::replaceMailingTokens($text, $dao, NULL, $tokens['text']);