1

我正在使用 Underscore + Backbone 构建一个网站。基本上我想知道是否可以从联系表格发送电子邮件。

这是我的骨干模型:

class ContactModel extends Backbone.Model

    defaults :
        message : 'Default message'

    validate : ( attrs_ ) ->

        # Validation Logique

    sync : (method, model) ->

        xhr = $.ajax
                dataType: "json"
                type: "POST"
                url: # HERE I WANT TO SEND DATA TO GOOGLE APPENGINE
                data: model.toJSON() 

                success : ( jqXHR, textStatus ) =>

                    console.log 'Success', 'jqXHR_ :', jqXHR, 'textStatus_ :', textStatus

                error : ( jqXHR_, textStatus_, errorThrown_ ) ->

                    console.log 'Success', 'jqXHR_ :', jqXHR_, 'textStatus_ :', textStatus_, 'errorThrown_ :', errorThrown_

我的问题是:是否可以在我的应用引擎中检索从我的模型发送的 JSON,以便使用 python 将模型的消息属性发送到我的电子邮件地址

4

2 回答 2

2

是的。只需创建一个 POST 处理程序,获取 request.body 并使用 json 将其转换为您可以在 python 中使用的内容,然后发送电子邮件。

表格入门

class Guestbook(webapp.RequestHandler):
def post(self):
    data = self.response.body
    jdata = json.loads(data)
    #send email with data in jdata
于 2012-12-24T22:13:53.520 回答
0

最后我用下面的代码解决了这种情况:

import os
import webapp2
import logging
import json
from google.appengine.api import mail

class MainPage(webapp2.RequestHandler):

    def get(self):

        #If request comes from the App

        if self.request.referer == 'Your request.referer' :

            message = self.request.get('message')

            #If there is no message or message is empty

            if not message and len(message) == 0:

                self.response.headers.add_header('content-type', 'text/plain', charset='utf-8')

                self.response.out.write('An empty message cannot be submitted')

                return

            #Print message

            logging.info('Message : ' + message)

            #Set email properties

            user_address = 'user_address'
            sender_address = 'sender_address'
            subject = 'Subject'
            body = message

            #Send Email

            mail.send_mail(sender_address, user_address, subject, body)


        #If request comes from unknow sources

        else :

            self.response.headers.add_header('content-type', 'text/plain', charset='utf-8')

            self.response.out.write('This operation is not allowed')

            return

app = webapp2.WSGIApplication([('/', MainPage)])
于 2012-12-25T03:41:22.743 回答