我正在阅读有关Receiving Mail的教程。我按照说明更新了app.yaml文件:
application: hello-1-world
version: 1
runtime: python
api_version: 1
handlers:
- url: /favicon.ico
static_files: static/images/favicon.ico
upload: static/images/favicon.ico
- url: /_ah/mail/.+
script: handle_incoming_email.py
login: admin
- url: /.*
script: hw.py
inbound_services:
- mail
并创建了handle_incoming_email.py
import cgi
import os
import logging
from google.appengine.api import users
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
from google.appengine.ext import db
from google.appengine.api import mail
from google.appengine.ext.webapp.mail_handlers import InboundMailHandler
class ReceiveEmail(InboundMailHandler):
def receive(self,message):
logging.info("Received email from %s" % message.sender)
plaintext = message.bodies(content_type='text/plain')
for text in plaintext:
txtmsg = ""
txtmsg = text[1].decode()
logging.info("Body is %s" % txtmsg)
self.response.out.write(txtmsg)
application = webapp.WSGIApplication([
ReceiveEmail.mapping()
], debug=True)
def main():
run_wsgi_app(application)
if __name__ == "__main__":
main()
我还有hw.py
我曾经练习发送电子邮件。那个有效。
现在我转到http://localhost:8081/_ah/admin/inboundmail
并发送电子邮件至help@hello-1-world.appspotmail.com
有人可以向我解释我如何处理这封电子邮件吗?如何访问电子邮件的内容?我有代码
self.response.out.write(txtmsg)
<{1>}中的但不会打印任何内容。
如果有人澄清接收电子邮件的工作方式,我将不胜感激。
handle_incoming_email.py
据我所知class MailHandler (InboundMailHandler):
def receive(self, message):
sender = message.sender
user_account = db.GqlQuery("SELECT * FROM Task WHERE user = :1", sender).fetch(5)
是发件人的电子邮件。因此,在我的情况下,我如何访问发件人电子邮件地址。
另外,为什么我需要一个单独的脚本来处理传入的邮件?为什么我不能将sender
处理程序放在我的ReceiveEmail
脚本中?如果我这样做,我在哪里放线
hw.py
如果你能帮我解决这些问题,我将不胜感激。
(GAE组I asked the same question但没有答案。)
答案 0 :(得分:1)
help@hello-1-world.appspotmail.com是否是有效的Google用户? GAE只能从您的应用程序的Google用户接收/发送邮件。 你的代码似乎是正确的。
“另外,为什么我需要一个单独的脚本来处理收到的邮件?为什么我不能把ReceiveEmail处理程序放在我的hw.py中” - &gt;主要脚本是处理url请求,我认为这样更清楚。