在Heroku

时间:2017-02-05 09:17:48

标签: parse-server mailgun

我正在尝试设置mailgun以便在Heroku上使用parse-server app。

推荐的API是

https://github.com/ParsePlatform/parse-server-simple-mailgun-adapter

但是关于如何实现这一目标的说明是不存在的。

---------编辑-----------

按照说明和服务器推送到Heroku。虽然我还没有收到电子邮件。我只是使用mailgun沙箱并授权和激活收件人。

我不确定是否指定模板的路径或:

fromAddress: process.env.EMAIL_FROM 

这不是由mailgun提供的,所以我刚刚输入no-reply@myservername.heroku

这显然无效?

index.js代码:

var express = require('express');
var ParseServer = require('parse-server').ParseServer;
var S3Adapter = require('parse-server').S3Adapter;
var path = require('path');

const resolve = require('path').resolve;

var databaseUri = process.env.DATABASE_URI || process.env.MONGODB_URI;

if (!databaseUri) {
    console.log('DATABASE_URI not specified, falling back to localhost.');
}


var api = new ParseServer({
    //**** General Settings ****//

    databaseURI: databaseUri || 'mongodb://localhost:27017/dev',
    cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
    serverURL: process.env.SERVER_URL || 'http://localhost:1337/parse',  // Don't forget to change to https if needed
    maxUploadSize: '500mb',

    //**** Security Settings ****//
    // allowClientClassCreation: process.env.CLIENT_CLASS_CREATION || false, 
    appId: process.env.APP_ID || 'myAppId',
    masterKey: process.env.MASTER_KEY || 'myMasterKey', //Add your master key here. Keep it secret! 

    //**** Live Query ****//
    // liveQuery: {
    //  classNames: ["TestObject", "Place", "Team", "Player", "ChatMessage"] // List of classes to support for query subscriptions
    // },


      //**** File Storage ****//
      filesAdapter: new S3Adapter({
          accessKey: process.env.S3_ACCESS_KEY || '',
          secretKey: process.env.S3_SECRET_KEY || '',
          bucket: process.env.S3_BUCKET || '',
          directAccess: true
     }),

    //**** Email Verification ****//
    /* Enable email verification */
    // verifyUserEmails: true,
    /* The public URL of your app */
    // This will appear in the link that is used to verify email addresses and reset passwords.


    publicServerURL: process.env.SERVER_URL || '',
    appName: process.env.APP_NAME || '',

     emailAdapter: {
        module: 'parse-server-mailgun',
        options: {
            fromAddress: process.env.EMAIL_FROM || '',
            domain: process.env.MAILGUN_DOMAIN || '',
            apiKey: process.env.MAILGUN_API_KEY  || '',

            templates: {
              passwordResetEmail: {
              subject: 'Reset your password',
              pathPlainText: resolve(__dirname, 'https:/myparseserveronheroku.herokuapp.com/node_modules/parse-server-mailgun-adapter/test/email-templates/password_reset_email.txt'),
              pathHtml: resolve(__dirname, 'https:/myparseserveronheroku.herokuapp.com/node_modules/parse-server-mailgun-adapter/test/email-templates/password_reset_email.html'),
              callback: (user) => { return { firstName: user.get('firstName') }}
              // Now you can use {{firstName}} in your templates
              },
              verificationEmail: {
              subject: 'Confirm your account',
              pathPlainText: resolve(__dirname, 'https:/myparseserveronheroku.herokuapp.com/node_modules/parse-server-mailgun-adapter/test/email-templates/verification_email.txt'),
              pathHtml: resolve(__dirname, 'https:/myparseserveronheroku.herokuapp.com/node_modules/parse-server-mailgun-adapter/test/email-templates/verification_email.html'),
              callback: (user) => { return { firstName: user.get('firstName') }}
              // Now you can use {{firstName}} in your templates 
              }
            }
        }
     }

});

我发送密码重置的快速代码说消息已经发送,所以我假设Cliff告诉我的一切都是正确的,服务器端设置正常,可能只是我对变量做了些蠢事。

    PFUser.requestPasswordResetForEmail(inBackground: emailAddress!) { (success, error) in
        if error != nil {
            // display error message
            let userMessage: String = error!.localizedDescription
            GeneralFunctions.createAlert(errorTitle: "Oops...", errorMessage: userMessage, className: self )
        } else {
            // display success message
            let userMessage: String = "An new password was sent to \(emailAddress!)"
            GeneralFunctions.createAlert(errorTitle: "Hooray...", errorMessage: userMessage, className: self )
        }
    }

-----------编辑----------

尝试重置密码后的详细日志

email=my-verified-email@email.com.au
2017-02-06T00:44:25.788619+00:00 app[web.1]: [36mverbose[39m: RESPONSE from [POST] /parse/requestPasswordReset: {
2017-02-06T00:44:25.788623+00:00 app[web.1]:   "response": {}
2017-02-06T00:44:25.788625+00:00 app[web.1]: } 
2017-02-06T00:44:25.797455+00:00 app[web.1]: { Error: ENOENT: no such file or directory, open '/app/https:/myparseserveronheroku.herokuapp.com/node_modules/parse-server-mailgun-adapter/test/email-templates/password_reset_email.txt'
2017-02-06T00:44:25.797458+00:00 app[web.1]:   errno: -2,
2017-02-06T00:44:25.797459+00:00 app[web.1]:   code: 'ENOENT',
2017-02-06T00:44:25.797459+00:00 app[web.1]:   syscall: 'open',
2017-02-06T00:44:25.797462+00:00 app[web.1]:   path: '/app/https:/myparseserveronheroku.herokuapp.com/node_modules/parse-server-mailgun-adapter/test/email-templates/password_reset_email.txt' }
2017-02-06T00:44:25.792191+00:00 heroku[router]: at=info method=POST path="/parse/requestPasswordReset" host=myparseserveronheroku.herokuapp.com request_id=666ff3e0-db4a-4e76-b7b5-6353edc7e15a fwd="111.111.111.11" dyno=web.1 connect=0ms service=81ms status=200 bytes=483

所以绝对看起来它试图从不存在的模板发送。我不知道如何在这里指定路径,我原以为所有这些目录包括node_modules / parse-server-mailgun-adapter / test / email-templates都被推送到了Heroku。

1 个答案:

答案 0 :(得分:1)

首先:

npm install --save parse-server-mailgun

然后在index.js文件中,您可以在初始化中将其设置如下:

 publicServerURL: 'http://MY_HEROKU_APP.herokuapp.com/parse', 
 appName: 'MY_APP',
 emailAdapter: {
    module: 'parse-server-mailgun',
    options: {
      fromAddress: 'no-reply@example.com',
      domain: 'example.com',
      apiKey: 'key-XXXXXX',
    }
 }

解析服务器附带的默认Mailgun适配器,您需要设置fromAddres,以及Mailgun提供的域和apiKey。此外,还需要配置要使用的模板。您必须为每个模板至少提供纯文本版本。 html版本是可选的。

verifyUserEmails: true,
  emailAdapter: {
    module: 'parse-server-mailgun',
    options: {
      // The address that your emails come from 
      fromAddress: 'YourApp <noreply@yourapp.com>',
      // Your domain from mailgun.com 
      domain: 'example.com',
      // Your API key from mailgun.com 
      apiKey: 'key-mykey',
      // The template section 
      templates: {
        passwordResetEmail: {
          subject: 'Reset your password',
          pathPlainText: resolve(__dirname, 'path/to/templates/password_reset_email.txt'),
          pathHtml: resolve(__dirname, 'path/to/templates/password_reset_email.html'),
          callback: (user) => { return { firstName: user.get('firstName') }}
          // Now you can use {{firstName}} in your templates 
        },
        verificationEmail: {
          subject: 'Confirm your account',
          pathPlainText: resolve(__dirname, 'path/to/templates/verification_email.txt'),
          pathHtml: resolve(__dirname, 'path/to/templates/verification_email.html'),
          callback: (user) => { return { firstName: user.get('firstName') }}
          // Now you can use {{firstName}} in your templates 
        },
        customEmailAlert: {
          subject: 'Urgent notification!',
          pathPlainText: resolve(__dirname, 'path/to/templates/custom_alert.txt'),
          pathHtml: resolve(__dirname, 'path/to/templates/custom_alert.html'),
        }
      }
    }

参考NPM包:https://www.npmjs.com/package/parse-server-mailgun