CRM-15306 Adding hook to alter mail templates

    Details

    • Type: New Feature
    • Status: Done/Fixed
    • Priority: Trivial
    • Resolution: Fixed/Completed
    • Affects Version/s: 4.5
    • Fix Version/s: 4.7
    • Component/s: CiviMail
    • Labels:
      None
    • Documentation Required?:
      Developer Doc
    • Funding Source:
      Contributed Code

      Description

      Adding a hook which is called after getting the content of the mail and before tokenizing it.

      Doing this we can alter the content and subject of the mail before it is tokenized and send to the recipients.

      See file attached. I placed the htmlToText() function after the hook implementation because the alter functions should have the original value, I think.

      Why? With this hook we can

      Example implemenation:
      ---------------------------------

      $data = array(
      'apikey' => '<something>',
      'html' => $templates['html'],
      );

      $options = array(
      'method' => 'POST',
      'data' => drupal_http_build_query($data),
      'headers' => array(
      'Content-Type' => 'application/x-www-form-urlencoded',
      ),
      );

      $response = drupal_http_request('https://us2.api.mailchimp.com/2.0/helper/inline-css.json', $options);

      //@todo: check if response is ok

      $result = drupal_json_decode($response->data);

      $templates['html'] = $result['html'];

        Attachments

          Activity

          [CRM-15306] Adding hook to alter mail templates
          Coleman Watts added a comment -

          A couple suggestions/questions:

          • Why is the hook called alterMailTemplates? It doesn't seem to have anything to do with predefined templates, and the "s" at the end implies plural when there is only one item being acted on.
          • It seems that it's actual function is to allow modification of mailing content so a better name might be hook_alterMailContent or possibly hook_civiMailPreprocess
          • Whatever it's called, I don't think we should close this issue until it gets added to the hook documentation: http://wiki.civicrm.org/confluence/display/CRMDOC/Hook+Reference
          Yashodha Chaku added a comment -

          You are right, have renamed the hook to hook_alterMailContent and added the documentation. Thx!

            People

            • Assignee:
              Yashodha Chaku
              Reporter:
              Wim De Craene

              Dates

              • Created:
                Updated:
                Resolved: