“Email_backend onde ler” Respostas de código

Email_backend onde ler

SPARKPOST_API_KEY = 'API_KEY'
EMAIL_BACKEND = 'sparkpost.django.email_backend.SparkPostEmailBackend'
Long Lion

Email_backend onde ler

from django.core.mail import send_mail

send_mail(
    subject='Hello from SparkPost',
    message='Woo hoo! Sent from Django!',
    from_email='[email protected]',
    recipient_list=['[email protected]'],
    html_message='<p>Hello Rock stars!</p>',
)
Long Lion

Email_backend onde ler

SPARKPOST_OPTIONS = {
    'track_opens': False,
    'track_clicks': False,
    'transactional': True,
}
Long Lion

Respostas semelhantes a “Email_backend onde ler”

Perguntas semelhantes a “Email_backend onde ler”

Mais respostas relacionadas para “Email_backend onde ler” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código