0

我正在尝试使用 Mandrill 向我的 Web 应用程序的用户发送基于事件的电子邮件通知。我正在将 Parse 与 Back4App 一起使用。

在本教程 ( https://docs.back4app.com/docs/integrations/parse-server-mandrill/ ) 中,托管服务提供商建议使用以下方法从 Android 应用程序调用 Mandrill 云代码:

public class Mandrill extends AppCompatActivity {


 @Override

 protected void onCreate(Bundle savedInstanceState) {

   Parse.initialize(new Parse.Configuration.Builder(this)

    .applicationId("your back4app app id”)

     .clientKey(“your back4app client key ")

      .server("https://parseapi.back4app.com/").build()

     );


     Map < String, String > params = new HashMap < > ();

     params.put("text", "Sample mail body");

     params.put("subject", "Test Parse Push");

     params.put("fromEmail", "someone@example.com");

     params.put("fromName", "Source User");

     params.put("toEmail", "other@example.com");

     params.put("toName", "Target user");

     params.put("replyTo", "reply-to@example.com");

     ParseCloud.callFunctionInBackground("sendMail", params, new FunctionCallback < Object > () {

      @Override

      public void done(Object response, ParseException exc) {

       Log.e("cloud code example", "response: " + response);

      }

     });


     super.onCreate(savedInstanceState);

     setContentView(R.layout.activity_mandrill);

    }

   }

如何使用 Parse JavaScript SDK 在 JavaScript 中实现这一点?

这是我到目前为止所做的,但它不会发送电子邮件。我设置了 Mandrill,以及经过验证的电子邮件域和有效的 DKIM 和 SPF。

// Run email Cloud code
Parse.Cloud.run("sendMail", {
    text: "Email Test",
    subject: "Email Test",
    fromEmail: "no-reply@test.ca",
    fromName: "TEST",
    toEmail: "test@gmail.com",
    toName: "test",
    replyTo: "no-reply@test.ca"
}).then(function(result) {
    // make sure to set the email sent flag on the object
    console.log("result :" + JSON.stringify(result));
}, function(error) {
    // error
});

我什至没有在控制台中得到结果,所以我认为云代码甚至没有执行。

4

1 回答 1

1

您必须将 Mandrill 电子邮件适配器添加到 Parse 服务器的初始化中,如他们的Github 页面所述。还要查看Parse Server Guide以了解如何初始化或使用他们的示例项目

然后按照指南设置 Cloud Code 。您需要使用 Android 应用程序或任何 Javascript 应用程序调用 Cloud Code 函数,或者直接在 Cloud Code 中使用 Parse 对象的 beforeSave 或 afterSave 挂钩,这允许您在用户注册时发送欢迎电子邮件。如果您想实现基于对象更新的基于行为的电子邮件,这可能会派上用场。另外,因为它在服务器上而不是客户端上,所以更容易维护和扩展。

要使 Cloud Code 函数真正通过 Mandrill 发送电子邮件,您需要向 Cloud Code 函数添加更多代码。首先,添加一个包含以下内容的文件:

var _apiUrl = 'mandrillapp.com/api/1.0';
var _apiKey = process.env.MANDRILL_API_KEY || '';

exports.initialize = function(apiKey) {
  _apiKey = apiKey;
};

exports.sendTemplate = function(request, response) {
  request.key = _apiKey;

  return Parse.Cloud.httpRequest({
    method: 'POST',
    headers: {
      'Content-Type': 'application/json'
    },
    url: 'https://' + _apiUrl + '/messages/send-template.json',
    body: request,
    success: function(httpResponse) {
      if (response) {
        response.success(httpResponse);
      }
      return Parse.Promise.resolve(httpResponse);
    },
    error: function(httpResponse) {
      if (response) {
        response.error(httpResponse);
      }
      return Parse.Promise.reject(httpResponse);
    }
  });
};

在您的 Cloud Code 文件中需要该文件,并像使用任何其他 Promise 一样使用它。

var Mandrill = require("./file");
Mandrill.sendTemplate({
      template_name: "TEMPLATE_NAME",
      template_content: [{}],
      key: process.env.MANDRILL_API_KEY,
      message: {
        global_merge_vars: [{
          name: "REPLACABLE_CONTENT_NAME",
          content: "YOUR_CONTENT",
        }],
        subject: "SUBJECT",
        from_email: "YOUR@EMAIL.COM",
        from_name: "YOUR NAME",
        to: [{
          email: "RECIPIENT@EMAIL.COM",
          name: "RECIPIENT NAME"
        }],
        important: true
      },
      async: false
    })
    .then(
      function success() {

      })
    .catch(
      function error(error) {

      });

确保您在 Mailchimp 上创建了一个模板,右键单击它并选择“发送到 Mandrill”,这样您就可以在通过 API 发送时使用该模板的名称。

它有点复杂,但一旦设置好,它就像一个魅力。祝你好运!

于 2018-03-13T11:56:37.617 回答