Title: SesPress
Author: Vaibhav Rathore
Published: <strong>2018 年 1 月 10 日</strong>
Last modified: 2018 年 1 月 10 日

---

搜索插件

**该插件尚未通过WordPress的最新3个主要版本进行测试**。 当与较新版本的WordPress一起
使用时，可能不再受到维护或支持，并且可能会存在兼容性问题。

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

# SesPress

 作者：[Vaibhav Rathore](https://profiles.wordpress.org/rathorevaibhav/)

[下载](https://downloads.wordpress.org/plugin/sespress.zip)

 * [详情](https://cn.wordpress.org/plugins/sespress/#description)
 * [评价](https://cn.wordpress.org/plugins/sespress/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/sespress/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/sespress/#developers)

 [支持](https://wordpress.org/support/plugin/sespress/)

## 描述

SesPress allows you to send emails using Amazon’s Simple Email Service.

Major features in SesPress includes:

 * Support to enable/disable the mail functionality
 * Ability to add a default sender
 * Test mode to override recipients with a test mode recipient at the time of testing
 * Ability to send mail templates with dynamic data

## 安装

1) Upload the plugin files to the `/wp-content/plugins/sespress` directory, or install
the plugin through the WordPress plugins screen directly.
 2) Activate the plugin
through the ‘Plugins’ screen in WordPress. 3) Use the `Settings->SesPress` screen
to configure your the AWS credentials. 4) Use the following snippet in your code
to use the functionality.

    ```
    add_action( 'wp', 'sespress_send_sample' );
    function sespress_send_sample() {
        $args = array(
            'subject' => 'Welcome to SesPress',
            'recipients' => array(
                array(
                    'name' => 'John Doe',
                    'email' => 'johndoe@example.com',
                ),
                array(
                    'name' => 'Jane Doe',
                    'email' => 'janedoe@example.com',
                ),
            ),
            'sender' => array(
                'name' => 'Admin',
                'email' => 'admin@mysite.com',
            ),
            'message' => array(
                'html' => '<h2>Test message embedded in HTML tags.</h2>'
            ),
        );
        $sespress = new SesPress;
        $result = $sespress->send( $args );
        echo $result['data'];
    }
    ```

## 常见问题

  Installation Instructions

1) Upload the plugin files to the `/wp-content/plugins/sespress` directory, or install
the plugin through the WordPress plugins screen directly.
 2) Activate the plugin
through the ‘Plugins’ screen in WordPress. 3) Use the `Settings->SesPress` screen
to configure your the AWS credentials. 4) Use the following snippet in your code
to use the functionality.

    ```
    add_action( 'wp', 'sespress_send_sample' );
    function sespress_send_sample() {
        $args = array(
            'subject' => 'Welcome to SesPress',
            'recipients' => array(
                array(
                    'name' => 'John Doe',
                    'email' => 'johndoe@example.com',
                ),
                array(
                    'name' => 'Jane Doe',
                    'email' => 'janedoe@example.com',
                ),
            ),
            'sender' => array(
                'name' => 'Admin',
                'email' => 'admin@mysite.com',
            ),
            'message' => array(
                'html' => '<h2>Test message embedded in HTML tags.</h2>'
            ),
        );
        $sespress = new SesPress;
        $result = $sespress->send( $args );
        echo $result['data'];
    }
    ```

## 评价

此插件暂无评价。

## 贡献者及开发者

「SesPress」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ Vaibhav Rathore ](https://profiles.wordpress.org/rathorevaibhav/)
 *   [ ColoredCow ](https://profiles.wordpress.org/coloredcow/)

[帮助将「SesPress」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/sespress)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/sespress/)，查看[SVN仓库](https://plugins.svn.wordpress.org/sespress/)，
或通过[RSS](https://plugins.trac.wordpress.org/log/sespress/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/sespress/)。

## 额外信息

 *  版本 **0.1**
 *  最后更新：**8 年前**
 *  活跃安装数量 **不到10**
 *  WordPress 版本 ** 4.7 或更高版本 **
 *  已测试的最高版本为 **4.9.29**
 *  PHP 版本 ** 5.6 或更高版本 **
 *  语言
 * [English (US)](https://wordpress.org/plugins/sespress/)
 * 标签
 * [aws](https://cn.wordpress.org/plugins/tags/aws/)[SES](https://cn.wordpress.org/plugins/tags/ses/)
 *  [高级视图](https://cn.wordpress.org/plugins/sespress/advanced/)

## 评级

尚未提交反馈。

[Your review](https://wordpress.org/support/plugin/sespress/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/sespress/reviews/)

## 贡献者

 *   [ Vaibhav Rathore ](https://profiles.wordpress.org/rathorevaibhav/)
 *   [ ColoredCow ](https://profiles.wordpress.org/coloredcow/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/sespress/)