MailJet è un app Django che implementa l'API REST MailJet.
Installa
Per installare python eseguire semplicemente setup.py install
Le impostazioni possono essere configurate da un file di impostazioni di Django attraverso MAILJET_API_KEY e MAILJET_SECRET_KEY. Oppure attraverso variabili d'ambiente con lo stesso nome.
cioè
export MAILJET_API_KEY = qualcosa
export MAILJET_SECRET_KEY = something_else
Utilizzo
Per recuperare i dati:
& Nbsp; >>> MailJet import
& Nbsp; >>> mailjet.Api print () user.infos ().
& Nbsp; {
& Nbsp; u'status ': u'OK',
& nbsp; u'infos ": {
& Nbsp; u'username ': u'user@domain.com',
& Nbsp; u'firstname ': u'firstname',
& Nbsp; u'locale ': u'en_US',
& Nbsp; u'lastname ': u'lastname',
& Nbsp; u'company_name ': u'company_name',
& Nbsp; u'contact_phone ': None,
& Nbsp;},
& Nbsp;}
Per inserire i dati:
& Nbsp; >>> MailJet import
& Nbsp; >>> api = mailjet.Api ()
& Nbsp; >>> list_ = api.lists.create (label = 'Test', name = 'test')
& Nbsp; >>> list_ stampa
& Nbsp; {u'status ': u'OK', u'list_id ': ...}
& Nbsp; >>> api.user.addcontact print (
& Nbsp; contact='user@domain.com ',
& Nbsp; id = lista _ ['list_id'],
& Nbsp; method = 'POST',
& Nbsp;)
Requisiti :
- Python
- Django
I commenti non trovato