好吧,我对GAE样板缺乏资源感到沮丧,特别是因为它的目录结构有点复杂,所以我来这里。
无论如何,我有这个联系表格,我根据样板提供的contact.html
模板进行了改编。我对访问者可以使用用户注册不感兴趣,我只想要一个非常简单的联系表单Full name
,Email address
和Message
。据我所知,表单本身正在工作,因为我没有从样板中更改任何代码:
<form id="form_contact" action="{{ url|safe }}" method="post" class="well form-horizontal">
<fieldset>
<input type="hidden" name="exception" value="{{ exception|e }}">
<input type="hidden" name="_csrf_token" value="{{ csrf_token() }}">
{{ macros.field(form.name, label=_("Name"), placeholder=_("Enter your")+" "+_("Name"), class="input-xlarge focused required") }}
{{ macros.field(form.email, label=_("Email"), placeholder=_("Enter your")+" "+_("Email"), class="input-xlarge focused required email", type="email") }}
{{ macros.field(form.message, label=_("Message"), class="input-xlarge required", cols="40", rows="8") }}
<div class="form-actions">
<button type="submit" class="btn btn-primary">{% trans %}Send Message{% endtrans %}</button>
</div>
</fieldset>
</form>
我遇到的问题是我无法将电子邮件发送到我想要的电子邮件地址。我可以告诉我更改的唯一文件是d*******@gmail.com
文件,我可以将其发送到config.py
文件,我尝试更改此文件:
# contact page email settings
'contact_sender': "l*******@gmail.com",
'contact_recipient': "d*******@gmail.com",
从line 24
开始,以line 26
结束,但没有运气。还有其他配置文件我应该改变吗?顺便说一句,我更改的config.py
文件的确切目录是C:\Users\*****\Desktop\Projects\******\boilerplate\config.py
答案 0 :(得分:2)
日志说什么?
在GAE中,电子邮件的发件人必须是appengine控制台中的注册管理员或登录的Google用户。因此,如果这些条件均不属实,您的电子邮件将不会被发送。
以下是我的工作方式,它适用于我(在电子邮件管理控制台中将管理员地址注册为管理员后):
from google.appengine.api import mail
...
message = mail.EmailMessage(sender='Kool Business <info@koolbusiness.com>', subject=article.title)
message.body = """
Hello!<br>Now your ad <a href="http://www.koolbusiness.com/vi/%d.html">%s</a> has been out for a week. If you already have sold your product you can remove your ad.<br><br>Some advice to promote your ad:<br>Change + Renew the ad and it will be on top of the list. You can also change text and price.<br>Change the ad if you only want to lower the price or change the ad text<br>Renew so that the ad will be on top if the list. <br><br>Best regards,<br>Koolbusiness.com
""" % (article.key().id(),article.title)
message.html = """
<html><head></head><body>
Hello!<br>Now your article <a href="http://www.koolbusiness.com/vi/%d.html">%s</a> has been out for a week. If you already have sold your product you can remove your ad.<br><br>Some advice to promote your article:<br>Change + Renew the article and it will be on top of the list. You can also change text and price.<br>Change the article if you only want to lower the price or change the ad text<br>Renew so that the ad will be on top if the list. <br><br>Best regards,<br>Koolbusiness.com
</body></html>
""" % (article.key().id(),ad.title)
message.to=article.email
message.send()