Title: HTML Emails
Author: Mohammad Jangda
Published: <strong>2010 年 4 月 6 日</strong>
Last modified: 2010 年 5 月 5 日

---

搜尋外掛

這個外掛**並未在最新的 3 個 WordPress 主要版本上進行測試**。開發者可能不再對這個
外掛進行維護或提供技術支援，並可能會與更新版本的 WordPress 產生使用上的相容性問題。

![](https://s.w.org/plugins/geopattern-icon/html-emails.svg)

# HTML Emails

 由 [Mohammad Jangda](https://profiles.wordpress.org/batmoo/) 開發

[下載](https://downloads.wordpress.org/plugin/html-emails.1.0.zip)

 * [詳細資料](https://tw.wordpress.org/plugins/html-emails/#description)
 * [使用者評論](https://tw.wordpress.org/plugins/html-emails/#reviews)
 *  [安裝方式](https://tw.wordpress.org/plugins/html-emails/#installation)
 * [開發資訊](https://tw.wordpress.org/plugins/html-emails/#developers)

 [技術支援](https://wordpress.org/support/plugin/html-emails/)

## 外掛說明

Converts the default plain-text email notifications into fully customizable, sweet-
lookin’ HTML emails.

Multi-site support (for WordPress 3.0) will be added soon.

**Notes:**

 * Emails are sent with readable plain-text versions for email clients that don’t
   support HTML emails. Note: they’re somewhat crude because they’re auto-generated.
   I may decide to add decent-looking plain-text versions in the future, but that’s
   low priority.
 * Emails have only been tested on Gmail, Gmail on Android, and Outlook, but should
   work on most email clients (including clients without HTML support). If you’re
   using a client other than the 3 I’ve listed, I would appreciate [an email](https://tw.wordpress.org/plugins/html-emails/batmoo@gmail.com?output_format=md)
   with info on whether the email looks like it should and works correctly.

Send your questions, comments, suggestions [via email](https://tw.wordpress.org/plugins/html-emails/batmoo@gmail.com?output_format=md).

### Customizing Templates

You can fully customize the look of any of the emails by creating your own templates.
Emails have two pieces:

 * Email Wrapper (content common across all emails)
 * Email Message (content unique to each email)

Custom templates can be created an placed in either your theme directory or your
Content directory (/wp-content/ on most sites). See utils.php for a number of useful
functions that you can use in your templates.

**Email Wrapper**

The Email Wrapper includes elements and markup that are common across all email 
notifications. It contains your html, head and body tags and any other elements 
that are shared across emails.

To customize the email template, create a file called `html_email.php` and add it
to either your theme or content directory.

Note: you must include the following code in the template to work:

    ```
    <?php htmlize_message_body($email_templates, $email_data); ?>
    ```

The Email Wrapper has access to the following variables:

 * $email_title: (string) title of the email
 * $email_subtitle: (string) subtitle of the email
 * $email_data: (array) Associative array of various data passed by the calling 
   function

**Email Message: New Comment**

By default, new comment and comment moderation emails share the same template. You
can create separate templates for both for each comment type by creating the following
files:

 * `notify_postauthor_comment.php`
 * `notify_postauthor_trackback.php`
 * `notify_postauthor_pingback.php`
 * `notify_moderator_comment.php`
 * `notify_moderator_trackback.php`
 * `notify_moderator_pingback.php`

If you don’t want to customize the emails by comment type, just create the following
two templates:

 * `notify_postauthor.php`
 * `notify_moderator.php`

If you just want a custom template shared between the two notification types, just
create the following:

 * `notify_comment.php`

New Comment email messages have the following data variables available:

 * $comment – (obj) comment object
 * $post – (obj) post object
 * $comment_type – (string) slug for the comment_type
 * $comment_type_text – (string) friendly name for the comment_type
 * $comment_moderate – (bool) Whether the comment needs moderation or not

### Using HTML Emails in your plugin

It’s pretty easy to use. The main call you need to make is htmlize_message() and
pass the return into your wp_mail object. Details to come.

### Credits

 * Blockquote image borrowed from the amazing [Wu Wei theme by Jeff Ngan](https://wordpress.org/extend/themes/wu-wei)
 * Plain Text conversion script by [Jon Abernathy aka Chuggnutt](http://www.chuggnutt.com/html2text.php)
 * Email styling inspired by [WordPress.com Blog Subscription Notifications](http://en.support.wordpress.com/blog-subscriptions/)

## 螢幕擷圖

[⌊New Comment email as viewed in Gmail⌉⌊New Comment email as viewed in Gmail⌉[

New Comment email as viewed in Gmail

[⌊New User email as viewed in Gmail⌉⌊New User email as viewed in Gmail⌉[

New User email as viewed in Gmail

[⌊Email as viewed in Mail.app⌉⌊Email as viewed in Mail.app⌉[

Email as viewed in Mail.app

## 安裝方式

 1. Upload and extract the plugin to plugins directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Enjoy sweet lookin’ email notifications!

## 常見問題集

When I get some Frequently Asked Questions, I’ll include them here.

## 使用者評論

這個外掛目前沒有任何使用者評論。

## 參與者及開發者

以下人員參與了開源軟體〈HTML Emails〉的開發相關工作。

參與者

 *   [ Mohammad Jangda ](https://profiles.wordpress.org/batmoo/)

[將〈HTML Emails〉外掛本地化為台灣繁體中文版](https://translate.wordpress.org/projects/wp-plugins/html-emails)

### 對開發相關資訊感興趣？

任何人均可[瀏覽程式碼](https://plugins.trac.wordpress.org/browser/html-emails/)、
查看 [SVN 存放庫](https://plugins.svn.wordpress.org/html-emails/)，或透過 [RSS](https://plugins.trac.wordpress.org/log/html-emails/?limit=100&mode=stop_on_copy&format=rss)
訂閱[開發記錄](https://plugins.trac.wordpress.org/log/html-emails/)。

## 變更記錄

#### 1.0 (2010-05-05)

 * Note: This version was originally released as v0.2 but users weren’t being prompted
   with an upgrade because parsefloat is dumb.
 * Feature: Support for “New User” and “Password Lost” emails
 * Bug: Moderation emai not showing the correct number of emails pending
 * Localization: Belarusian translation added. Thanks to [Marcis G](http://pc.de/).

#### 0.2 (2010-05-04)

 * Same as 1.0

#### 0.11 (2010-04-09)

 * Better localization support
 * Bug: Moderation emails were not being sent because the wp_mail call was commented
   out
 * Docs: Localization comments and addtional details on customizing templates

#### 0.1 (2010-04-04)

 * First release
 * Comment notification emails

## 中繼資料

 *  版本 **1.0**
 *  最後更新 **16 年前**
 *  啟用安裝數 **20+**
 *  WordPress 版本需求 ** 2.9 或更新版本 **
 *  已測試相容的 WordPress 版本 **3.0.5**
 *  語言
 * [English (US)](https://wordpress.org/plugins/html-emails/)
 * 標籤:
 * [email](https://tw.wordpress.org/plugins/tags/email/)[html](https://tw.wordpress.org/plugins/tags/html/)
   [html email](https://tw.wordpress.org/plugins/tags/html-email/)[html emails](https://tw.wordpress.org/plugins/tags/html-emails/)
   [notification](https://tw.wordpress.org/plugins/tags/notification/)
 *  [進階檢視](https://tw.wordpress.org/plugins/html-emails/advanced/)

## 評分

 1 星，滿分為 5 星

 *  [  0 個 5 星使用者評論     ](https://wordpress.org/support/plugin/html-emails/reviews/?filter=5)
 *  [  0 個 4 星使用者評論     ](https://wordpress.org/support/plugin/html-emails/reviews/?filter=4)
 *  [  0 個 3 星使用者評論     ](https://wordpress.org/support/plugin/html-emails/reviews/?filter=3)
 *  [  0 個 2 星使用者評論     ](https://wordpress.org/support/plugin/html-emails/reviews/?filter=2)
 *  [  1 個 1 星使用者評論     ](https://wordpress.org/support/plugin/html-emails/reviews/?filter=1)

[撰寫評分](https://wordpress.org/support/plugin/html-emails/reviews/#new-post)

[查看全部使用者評論](https://wordpress.org/support/plugin/html-emails/reviews/)

## 參與者

 *   [ Mohammad Jangda ](https://profiles.wordpress.org/batmoo/)

## 技術支援

使用者可在技術支援論壇提出意見反應或使用問題。

 [檢視技術支援論壇](https://wordpress.org/support/plugin/html-emails/)

## 贊助

想要支援這個外掛的發展嗎？

 [ 贊助這個外掛 ](http://digitalize.ca/donate)