--- token_actions.module.orig	2008-10-05 11:32:53.000000000 -0400
+++ token_actions.module	2008-10-05 11:36:07.000000000 -0400
@@ -136,7 +136,11 @@ function token_actions_send_email_action
   $params['from'] = variable_get('site_mail', ini_get('sendmail_from'));
   $recipient = token_replace_multiple($context['recipient'], $context);
   $params['subject'] = str_replace(array("\r", "\n"), '', token_replace_multiple($context['subject'], $context));
-  $params['body'] = drupal_html_to_text(token_replace_multiple($context['message'], $context));
+  $body = token_replace_multiple($context['message'], $context);
+  if (!module_exists('mimemail')) {
+    $body = drupal_html_to_text($body);
+  }
+  $params['body'] = $body;
 
   if (drupal_mail('token_actions', 'action_send_email', $recipient, language_default(), $params)) {
     watchdog('action', 'Sent email to %recipient', array('%recipient' => $recipient));
