View:
def get(self,request,*args,**kwargs):
try:
mailServer = smtplib.SMTP(settings.EMAIL_HOST,settings.EMAIL_PORT)
print(mailServer.ehlo())
mailServer.starttls()
print(mailServer.ehlo())
mailServer.login(settings.EMAIL_HOST_USER,settings.EMAIL_HOST_PASSWORD)
print("conectando...")
email_to=[]
email_to.append("emailtosenditto@gmail.com")
subject="ADICRA - Comprobrante de Pago"
template= get_template('pagos/invoice.html')
context={
'sale': PagosHead.objects.get(pk=self.kwargs['pk']),
'comp': {'name':'ADICRA','ruc':'Av. Directorio Adicra 101','address':'C.A.B.A.'},
'icon': '{}{}'.format(settings.STATIC_URL,'core/img/adicrareng.jpg'),
'equis':'{}{}'.format(settings.STATIC_URL,'pagos/img/x.jpg'),
}
html=template.render(context)
response= HttpResponse(content_type='application/pdf')
#response['Content-Disposition']='attachment; filename="pago.pdf"' #Para Descargar
pisaStatus=pisa.CreatePDF(html, dest=response,link_callback=self.link_callback)
mensaje = EmailMessage(subject, body=pdf, from_email=settings.EMAIL_HOST_USER, to=email_to)
print("Acá antes del attach")
mensaje.attach('pago.pdf', pisaStatus,'application/pdf')
mensaje.content_subtype = "pdf"
mensaje.encoding = 'us-ascii'
mensaje.send()
#mailServer.sendmail(settings.EMAIL_HOST_USER,
# email_to,
# mensaje.as_string())
print("Correo enviado correcamente")
return response
except Exception as e:
print(e)
return HttpResponse(reverse_lazy('pagos:list'))
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/55b59d75-82de-4250-b180-2f0772e44213n%40googlegroups.com.
No comments:
Post a Comment