How do I send an HTML email using MimeMail module?

Created on 9 September 2024, 7 months ago

Problem/Motivation

I wish to send an email message formatted as HTML. Currently, every time I try to send an email message, even when it is tagged with HTML tags, it is formatted as plain text.

Steps to reproduce

These are my mail settings:

mail settings (attached)

mimemail settings. (attached)

This is what I have tried so far, unsuccessfully:

In the mail hook:


/**
 * Implements hook_mail().
 *
 * https://chatgpt.com/c/66de0837-2a1c-800a-a7a7-4f6a2b6de95a
 */
function solrai_mail($key, &$message, $params) {
  switch ($key) {
    case 'notify':
      break;
    case 'response':
      // Set the subject and message body.
      $message['subject'] = $params['subject'];
      $message['body'][] = $params['message']; // HTML content.
      break;
  }
}

If I add this to solrai_hook_alter, ALL formatting is removed from email:

		 if (isset($message['key']) && $message['key'] === 'notify') {  
		  // Set Content-Type to HTML for notify emails
		  $message['headers']['Content-Type'] = 'text/html; charset=UTF-8';
		 } 

sendMail method

 public static function sendEmail($to, $subject, $message, $type = 'notification') {

    # Debug
    $logger = \Drupal::logger('solrai');

    $mailManager = \Drupal::service('plugin.manager.mail');
    $module = 'solrai';
    $key = 'notify';
    $params['message'] = $message;
    $params['subject'] = $subject;
	
	if ($type === 'query') {
		$key = 'response';
	}
	
	$langcode = \Drupal::languageManager()->getDefaultLanguage()->getId();
    $send = TRUE;

    # Debug
	 $logger->info('(sendemail) module: @module, key: @key, subject: @subject, params: @params, to: @to', [
	  '@module' => $module,
	  '@key' => $key,
	  '@subject' => $subject,
	  '@params' =>  print_r($params, true),
	  '@to' => $to,
     ]);

    $result = $mailManager->mail($module, $key, $to, $langcode, $params, NULL, $send);

	  // Check and log if the email failed to send.
	  if ($result['result'] !== TRUE) {
		// Log the error if the result is not successful.
		\Drupal::logger('solrai')->error('Email sending failed: @error', ['@error' => print_r($result, TRUE)]);
	  }

    return new Response('Email sent');
  }

When I used the sendMail method above to send an email that is formatted with HTML, the email received is formatted in plain text. See the attached example:

Proposed resolution

Unknown. I don't know how to resolve this. Whatever I try results in either plain text (with and

converted to line feeds) or no formatting at all.

Help!

πŸ’¬ Support request
Status

Fixed

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States somebodysysop

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @somebodysysop
  • πŸ‡ΊπŸ‡ΈUnited States somebodysysop
  • Status changed to Postponed: needs info 7 months ago
  • πŸ‡ΊπŸ‡ΈUnited States tr Cascadia

    There is documentation - see the project page.
    There is an example module included with Mime Mail.

    All your code samples are wrong. If you still have questions after follow the instructions and looking at the example then ask those specific questions.

  • πŸ‡ΊπŸ‡ΈUnited States somebodysysop

    I have been unable to find an example of how to send an email formatted as html using mimemail. I do not have a template, and it is my understanding that I do not need a html twig in order to send html emails with mimemail.

    I don't see anything helpful in the mimemail_example.module:

    /**
     * Implements hook_mail().
     */
    function mimemail_example_mail($key, &$message, $params) {
      // The $params array holds the values entered on the ExampleForm, stored
      // with the same structure as the $form array. We need to copy these values
      // to the appropriate place in the $message so that they get used when
      // sending the email.
      $message['from'] = $params['headers']['From'] ?? NULL;
    
      // Strip newline characters from email subjects.
      $message['subject'] = isset($params['subject']) ? str_replace(["\r\n", "\r", "\n"], ' ', $params['subject']) : NULL;
      $message['body'][] = $params['body'];
    }
    

    Forgive me if I do not see any difference between the way you are sending and the way I do it:

    $result = $this->mailManager->mail($module, $key, $to, $langcode, $params, $reply, $send);

    /**
       * {@inheritdoc}
       */
      public function submitForm(array &$form, FormStateInterface $form_state) {
        // First, assemble arguments for MailManager::mail().
        $module = 'mimemail_example';
        $key = $form_state->getValue('key');
        $to = $form_state->getValue('to');
        $langcode = $this->languageManager->getDefaultLanguage()->getId();
        $params = $form_state->getValue('params');
        $reply = $params['headers']['Reply-to'];
        $send = TRUE;
    
        // Second, add values to $params and/or modify submitted values.
        // Set From header.
        if (!empty($form_state->getValue('from_mail'))) {
          $params['headers']['From'] = MimeMailFormatHelper::mimeMailAddress([
            'name' => $form_state->getValue('from'),
            'mail' => $form_state->getValue('from_mail'),
          ]);
        }
        elseif (!empty($form_state->getValue('from'))) {
          $params['headers']['From'] = $from = $form_state->getValue('from');
        }
        else {
          // Empty 'from' will result in the default site email being used.
        }
    
        // Handle empty attachments - we require this to be an array.
        if (empty($params['attachments'])) {
          $params['attachments'] = [];
        }
    
        // Remove empty values from $param['headers'] - this will force the
        // the formatting mailsystem and the sending mailsystem to use the
        // default values for these elements.
        foreach ($params['headers'] as $header => $value) {
          if (empty($value)) {
            unset($params['headers'][$header]);
          }
        }
    
        // Finally, call MailManager::mail() to send the mail.
        $result = $this->mailManager->mail($module, $key, $to, $langcode, $params, $reply, $send);
        if ($result['result'] == TRUE) {
          $this->messenger()->addMessage($this->t('Your message has been sent.'));
        }
        else {
          // This condition is also logged to the 'mail' logger channel by the
          // default PhpMail mailsystem.
          $this->messenger()->addError($this->t('There was a problem sending your message and it was not sent.'));
        }
      }
    

    The only thing I can see in the above example is this:

    $message['body'][] = $params['body'];

    I was NOT sending 'body' as a parameter. So, I modified my code to do so.

    So, I changed my sendEmail code to do that:

        $mailManager = \Drupal::service('plugin.manager.mail');
        $module = 'solrai';
        $key = 'notify';
        // $params['message'] = $message;
        $params['body'] = $message;
        $params['subject'] = $subject;
    
    

    And, in my mail hook:

    function solrai_mail($key, &$message, $params) {
      switch ($key) {
        case 'notify':
          $message['body'][] = $params['body']; // HTML content.
          break;
        case 'response':
          // Set the subject and message body.
          $message['subject'] = $params['subject'];
          $message['body'][] = $params['message']; // HTML content.
          break;
      }
    }
    
    

    However, the email output is still plain text. My simple test:

    <a href="https://bible.booksai.org/group/3238">How Do I and FAQs</a> | 
    <a href="https://bible.booksai.org/support">Contact Support</a>

    Still prints out in the email like this:

    How Do I and FAQs [1] |
    Contact Support [2]
    
    [1] https://bible.booksai.org/group/3238
    [2] https://bible.booksai.org/support

    The email still looks like this:

    So, what part of this process am I missing?

  • πŸ‡ΊπŸ‡ΈUnited States somebodysysop

    More information.

    When I use the Test Mime Mail form and send this code:

    Click here for How Do I and FAQs: https://bible.booksai.org/group/3238

    Click here to contact Support: https://bible.booksai.org/support

    How Do I and FAQs |
    Contact Support

    I receive this in the email:

    Click here for How Do I and FAQs: https://bible.booksai.org/group/3238
    Click here to contact Support: https://bible.booksai.org/support
    How Do I and FAQs [1] |
    Contact Support [2]

    [1] https://bible.booksai.org/group/3238
    [2] https://bible.booksai.org/support

    (null)

    So it does look like something else is overriding Mime Mail. How can I discover what this is?

  • πŸ‡ΊπŸ‡ΈUnited States tr Cascadia
  • πŸ‡ΊπŸ‡ΈUnited States somebodysysop

    Thank you. It appears the problem for me is that I needed to select MimeMail as the email formatter for the module that is sending the emails:

    Doing this appears to have resolved the issue. Emails are now being sent in HTML format.

    Thank You!

  • Status changed to Fixed 7 months ago
  • πŸ‡ΊπŸ‡ΈUnited States tr Cascadia
  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024