我的Parse.com应用程序如何发送电子邮件?

时间:2012-09-27 11:27:24

标签: javascript parse-platform

我正在使用Parse.com(javascript SDK),我希望用户能够从我的应用发送电子邮件。基本上,他们使用应用程序创建页面,然后我需要允许他们输入电子邮件地址列表;然后,应用会向每个地址发送指向他们已创建的网页的链接。

我可以在文档中找到告诉我如何发送电子邮件的任何内容。我可以列出电子邮件地址列表并生成电子邮件,但我无法弄清楚如何发送电子邮件。

Parse有可能吗?如果是这样,有人能指出我正确的方向吗?

谢谢!

5 个答案:

答案 0 :(得分:30)

解析云代码模块现在支持通过多个云端邮件提供商发送电子邮件:

答案 1 :(得分:8)

我在这里使用Mandrill和Parse Cloud Code创建了一个简单的iOS示例 http://www.stlplace.com/2013/11/24/send-email-via-cloud-code-in-parse/

答案 2 :(得分:5)

以下是@ududdy的答案的Android版本

public void sendMail(View view) {
    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");
    ParseCloud.callFunctionInBackground("sendMail", params, new FunctionCallback<Object>() {
        @Override
        public void done(Object response, ParseException exc) {
            Log.e("cloud code example", "response: " + response);
        }
    });
}

服务器端JS代码(main.js)解析云

Parse.Cloud.define("sendMail", function(request, response) {
var Mandrill = require('mandrill');
Mandrill.initialize('12AkxxxxxxxxxxxxxxrZEg');

Mandrill.sendEmail({
message: {
text: request.params.text,
subject: request.params.subject,
from_email: request.params.fromEmail,
from_name: request.params.fromName,
to: [
{
email: request.params.toEmail,
name: request.params.toName
}
]
},
async: true
},{
success: function(httpResponse) {
console.log(httpResponse);
response.success("Email sent!");
},
error: function(httpResponse) {
console.error(httpResponse);
response.error("Uh oh, something went wrong");
}
});
});

答案 3 :(得分:5)

有人可能会发现使用Mailgun,iOS和Parse Cloud的有用示例。

我决定和Mailgun一起去,因为Mandril目前只有4k免费邮件。

请注意,您必须有权访问您的域名才能设置“TXT”和“CNAME”记录,以证明您是该域名的所有者。

云代码:

// Use Parse.Cloud.define to define as many cloud functions as you want.
// For example:
Parse.Cloud.define("hello", function(request, response) {
  response.success("Hello world!");
});

Parse.Cloud.define("mailSend", function(request, response) {

    var Mailgun = require('mailgun');
    Mailgun.initialize('DOMAIN_NAME', 'API_KEY');

    Mailgun.sendEmail({
      to: request.params.target,
      from: request.params.originator,
      subject: request.params.subject,
      text: request.params.text
    }, {
      success: function(httpResponse) {
        console.log(httpResponse);
        response.success("Email sent!");
      },
      error: function(httpResponse) {
        console.error(httpResponse);
        response.error("Uh oh, something went wrong");
      }
    });

});

现在在你的ObjC项目的某个地方:

[PFCloud callFunctionInBackground:@"mailSend"
                   withParameters:@{
                                    @"target": @"target@mail.com",
                                    @"originator": @"from@mail.com",
                                    @"subject": @"Hey There",
                                    @"text": @"This is your iOS originated mail"
                                    }
                            block:^(NSString *result, NSError *error){

                                NSLog(@"error %@", error);
                                NSLog(@"result %@", result);

                            }];

答案 4 :(得分:4)

没有本地方法可以做到这一点。您最好的选择是等到Parse的Cloud Code支持第三方HTTP请求。我快速模拟了如何使用IronWorker + Ruby来发送电子邮件,但你当然可以使用其他语言:

http://news.ycombinator.com/item?id=4506888