我在GAE中设置了一个应用程序,我希望能够接收电子邮件。
文档说:
您可以将应用设置为接收收到的电子邮件 string@appid.appspotmail.com地址 GAE documentation
我没有发现在此表单中创建邮件的可能性(例如 service@appid.appspotmail.com )。
有人可以帮我设置appspot邮件地址并将其分配给应用程序吗? (我不知道是否需要在应用程序的权限设置中分配地址,或者仅仅放入应用程序的 web.xml 就足够了)
谢谢!
答案 0 :(得分:1)
您只需在appengine-web.xml
中添加以下内容:
<inbound-services>
<service>mail</service>
</inbound-services>
来源:GAE documentation - Receiving Mail
完成后,@yourappname.appspotmail.com
中的任何地址都有效。