mailjet is a django app to implement the mailjet REST API
Project description
Introduction
Mailjet is a real-time Cloud Emailing platform and this is a python library to access the Mailjet Web API.
Installation
Clone this repository:
git clone https://github.com/WoLpH/mailjet
cd into the cloned directory and execute:
python setup.py install.
The settings can be configured from a Django settings file through MAILJET_API_KEY and MAILJET_SECRET_KEY, or through environment variables with the same name.
i.e.
export MAILJET_API_KEY='YOUR_API_KEY'
export MAILJET_SECRET_KEY='YOUR_SECRET_KEY'
Alternatively, you can just pass the API key and Secret key as parameters when initializing the mailjet API as follows:
import mailjet
mailjet_api = mailjet.Api(api_key='YOUR_API_KEY', secret_key='YOUR_SECRET_KEY')
Usage
To get your account and profile information:
import mailjet
mailjet_api = mailjet.Api(api_key='YOUR_API_KEY', secret_key='YOUR_SECRET_KEY')
account_info = mailjet_api.user.infos()
acount_info would now be assigned the following python dict:
{
'status': 'OK',
'infos': {
'username': 'user@domain.com',
'firstname': 'firstname',
'locale': 'en_US',
'lastname': 'lastname',
'company_name': 'company_name',
'contact_phone': None,
}
}
Create a new list of contacts, following on from the previous example:
contact_list = mailjet_api.lists.create(
label='test',
name='Test list',
method='POST'
)
contact_list will now contain a dictionary with the status and list id as below:
{
'status': 'OK',
'contact_id': 000000000
}
You can now add contacts to your list using the contact_id:
mailjet_api.lists.addcontact(
contact='example@example.com',
id=contact_list['list_id'],
method='POST'
)
FAQ
How do I give reserved python keywords as parameters?
Methods such as creating a campaign require you to use reserved python keywords, such as from - hence, in order to overcome this, do the following:
params = dict()
params['method'] ='POST'
params['subject'] = 'My first campaign'
params['list_id'] = contact_list['list_id']
params['lang'] = 'en'
params['from'] = 'noreply@example.com'
params['from_name'] = 'Your name'
params['footer'] = 'default'
campaign = api.message.createcampaign(**params)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file mailjet-1.3.2.tar.gz
.
File metadata
- Download URL: mailjet-1.3.2.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 517fe14c08fb70fde3a91197a68aa82362b66ee987396513d6e761cc270bddf4 |
|
MD5 | 08d5b097b536e72d379a6e552cc46d45 |
|
BLAKE2b-256 | 6e904ade4eff38bd871e3afd2d426eaf5384a4397fb094ccfd5333f4f74ce0a4 |