vc
Size: a a a
vc
M
@api_view(['POST'])
def feedback(request):
username = request.user
subject = request.data.get('title')
message = request.data.get('text')
try:
send_mail(subject, message, username.email, ['googlockgood@gmail.com'])
except BadHeaderError:
return HttpResponse('Invalid header found')
return Response('hello world')
НВ
@api_view(['POST'])
def feedback(request):
username = request.user
subject = request.data.get('title')
message = request.data.get('text')
try:
send_mail(subject, message, username.email, ['googlockgood@gmail.com'])
except BadHeaderError:
return HttpResponse('Invalid header found')
return Response('hello world')
M
НВ
RN
SS
RN
SS
RN
SS
SS
SS
RN
RN
AK
SS
AK
AK