diff --git a/content_moderation_notifications.module b/content_moderation_notifications.module
index 71aed5a..4399209 100644
--- a/content_moderation_notifications.module
+++ b/content_moderation_notifications.module
@@ -54,8 +54,8 @@ function content_moderation_notifications_mail($key, &$message, $params) {
 
       $context = $params['context'];
 
-      $subject = PlainTextOutput::renderFromHtml($token_service->replace($params['subject'], $context));
-      $body = $token_service->replace($params['message'], $context);
+      $subject = PlainTextOutput::renderFromHtml($token_service->replace($params['subject'], $context, ['clear' => TRUE]));
+      $body = $token_service->replace($params['message'], $context, ['clear' => TRUE]);
 
       $message['subject'] = str_replace(["\r", "\n"], '', $subject);
       $message['body'][] = Markup::create($body);
