blob: d8dd2b349cb0ea8e278be4a1f54651f3229929e7 (
plain)
1
2
3
4
5
6
7
8
|
from django.core.mail import EmailMessage, SMTPConnection
from django.http import HttpResponse
from django.shortcuts import render_to_response
def no_template_view(request):
"A simple view that expects a GET request, and returns a rendered template"
return HttpResponse("No template used")
|