HTMLメールを送信する方法
私たちのウェブサイトで取引のためにHTMLメールをユーザーに送信する簡単なモジュールを作成しています。 よく検索しましたが、Drupalの適切な解決策が見つかりません。これで、プレーンテキストのメールを送信できます。 Drupal 7でHTMLメールを送信するための段階的な手順は何ですか? function example_form_submit( $form,&$form_state) { $friend_email=$form_state['values']['friend_email']; $mailto =$friend_email; //gift to a friend $mailfrom ='no-reply@example.com'; $subject = "another message for HTML email from example.com"; $body="<h2 style='font-size:28px;color:red;'>Hello EMAIL, i here i want to be <b>bolded</b></h2>"; if (drupal_mail('example', 'send_gift', $mailto, language_default(),$params,$mailfrom,TRUE)) { drupal_set_message(t('Your gift was sent successfully!!!')); } else { …