七 Django 1.5.4 Email 翻页实现

来源:互联网 发布:亿网科技备案域名购买 编辑:程序博客网 时间:2024/06/10 02:32

一.Email

demo/settings.py

views.py

from django.core.mail import EmailMultiAlternatives#...to_admin='alexexc@gmail.com'html_content="Information"msg=EmailMultiAlternatives('ABC',html_content,'from@server.com',[to_admin])msg.attach_alternative(html_content,'text/html')msg.send()

二.翻页

urls.py

views.py

from django.core.paginator import Paginator,Emptypage,InvalidPage

base.html

productos.html

SingleProducto.html




原创粉丝点击