Skip to the content.

服务说明

请通过市场安装, 详细文档请参考市场最新版本

发送邮件服务. 可以快速调用 tars 接口完成邮件的发送.

配置说明

配置文件名为config.json, 格式如下:

{
  "email": {
    "smtp": {
      "host": "smtp.exmail.qq.com",
      "port": 465,
      "secure": true,
      "auth": {
        "user": "",
        "pass": ""
      }
    }
  }
}

需要配置好 smtp 中字段即可.

使用说明

接口如下:



struct SendInfo
{
    1 optional vector<string> to;
    2 optional vector<string> cc;
    3 optional vector<string> bcc;
    4 optional string subject;

};

struct ContentInfo
{
    1 optional string text;
    2 optional string html;
};

struct MarkdownInfo
{
    1 optional string markdown;
    2 optional string css = "github.css";
};

interface SendEmail
{
    int sendEmail(SendInfo send, ContentInfo info);

    int sendEmailMarkdown(SendInfo send, MarkdownInfo info);

};

说明: