沮丧:我搜索了大多数网站,但仍无法找到任何答案。
信息:我对Python一无所知。
我想要编码:我想在按下HTML网页的按钮上使用Python发送邮件。它不应该打开用户的电子邮件客户端,例如' mailto'在HTML中,但直接发送邮件给我。 Web应用程序使用Google App Engine托管(网址类似于www.example.appspot.com)。我还想将文本框和广播组中的值发送到收件人的电子邮件地址。
HTML表单:
<form method="post" id="rsvpForm" action="">
<div class="row half">
<div class="6u">
<input type="text" name="name" id="name" placeholder="Name" />
</div>
<div class="6u">
<input type="text" name="email" id="email" placeholder="Email" />
</div>
</div>
<br/>
<div>
<div class="12u">
<span>Radio grp 1</span>
</div>
</div>
<div class="row half">
<div class="12u">
<input type="radio" name="attendance" value="Options">Options<br>
</div>
</div>
<br/>
<div class="row half">
<div class="12u">
<textarea name="message" id="message" placeholder="Message or wishes" rows="3">
</textarea>
</div>
</div>
<div class="row half">
<div class="12u">
<ul class="actions">
<li><input type="submit" class="style1" value="Send" id="sendMessage"/>
</li>
<li><input type="reset" class="style2" value="Reset" /></li>
</ul>
</div>
</div>
使用的参考:我使用此网站来托管网站
http://www.labnol.org/internet/host-website-on-google-app-engine/18801/
请帮帮我。我不想使用PHP
JFYI:我正在创建我的婚礼网站,如果你能帮助我,你将成为救世主。在此先感谢大家。堆栈交换万岁。
答案 0 :(得分:2)
发送来自GAE Python的电子邮件非常简单,但是你只发布了HTML代码,你有一个python处理程序吗?如果没有,我建议学习并测试google提供的所有这些教程:https://developers.google.com/appengine/docs/python/gettingstartedpython27/introduction
这是发送电子邮件表格GAE python的示例:https://developers.google.com/appengine/docs/python/mail/?hl=fr#Python_Sending_mail_in_Python