|
|
@@ -64,7 +64,7 @@ def reservar_evento(request, evento_id):
|
|
|
html_content = render_to_string('emails/confirmacion_reserva.html', {'evento': evento, 'usuario': request.user})
|
|
|
|
|
|
# Enviar el correo con el administrador en copia
|
|
|
- msg = EmailMultiAlternatives(asunto, texto, from_email, [to_email], cc=cc_email)
|
|
|
+ msg = EmailMultiAlternatives(asunto, texto, from_email, [to_email], bcc=cc_email)
|
|
|
msg.attach_alternative(html_content, "text/html")
|
|
|
msg.send()
|
|
|
|