【问题标题】:Google App Engine Boilerplate - Contact templateGoogle App Engine 样板 - 联系人模板
【发布时间】:2013-09-20 00:13:03
【问题描述】:

好的,我对 GAE 样板的资源缺乏感到沮丧,特别是因为它的目录结构有点复杂,所以我来这里。

无论如何,我有这个联系表格,我改编自模板提供的contact.html 模板。我对向访问者提供用户注册不感兴趣,我只想要一个非常简单的联系表单,其中包含 Full nameEmail addressMessage。据我所知,表单本身正在工作,因为我没有更改样板中的 任何 代码:

    <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 文件,我尝试更改此文件:

# 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

【问题讨论】:

    标签: python html google-app-engine email contact


    【解决方案1】:

    日志是怎么说的?

    在 GAE 中,电子邮件的发件人必须是 appengine 控制台中的注册管理员或登录的 google 用户。因此,如果这些条件都不成立,您的电子邮件将不会被发送。

    这是我的做法,它对我有用(在 appengine 管理控制台中将电子邮件地址注册为管理员之后):

    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()
    

    【讨论】:

    • 啊,谢谢!这就是我所缺少的。发件人不是给定应用程序的管理员。非常感谢。
    猜你喜欢
    • 2012-12-20
    • 2018-04-09
    • 2011-04-25
    • 2012-09-14
    • 2010-10-19
    • 2011-05-07
    • 2017-10-04
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多