This is the Amply Python SDK that integrates with the v1 API.
Project description
Amply
This is the Amply Python SDK that integrates with the v1 API.
Table of Contents
Install
Prerequisites
- Python 2.7, 3.5, 3.6, 3.7, or 3.8
- Amply account, sign up here.
Access Token
Obtain your access token from the Amply UI.
Install Package
pip install amply-mail
Domain Verification
Add domains you want to send from
via the Verified Domains tab on your dashboard.
Any emails you attempt to send from an unverified domain will be rejected. Once verified, Amply immediately starts warming up your domain and IP reputation. This warmup process will take approximately one week before maximal deliverability has been reached.
Quick Start
The following is the minimum needed code to send a simple email. Use this example, and modify the to
and from
variables:
import amply
import os
amply.set_access_token(os.environ.get('AMPLY_ACCESS_TOKEN'))
try:
response = amply.email.create({
'to': 'test@example.com',
'from': 'test@verifieddomain.com',
'subject': 'My first Amply email!',
'text': 'This is easy',
'html': '<strong>and fun :)</strong>'
})
except Exception as e:
if hasattr(e, 'errors'):
print('Validation or resource not found error')
print(e.errors)
elif hasattr(e, 'text'):
print('Generic API error: %s' %(e.text))
else:
raise e
Once you execute this code, you should have an email in the inbox of the recipient. You can check the status of your email in the UI from the Search, SQL, or Users page.
Methods
Parameter(s) | Description |
---|---|
to, cc, bcc | Email address of the recipient(s). This may be a string Test <test@example.com> , an object {name: 'Test', email: 'test@example.com'} , or an array of strings and objects. |
personalizations | For fine tuned access, you may override the to, cc, and bcc keys and use advanced personalizations. See the API guide here. |
from | Email address of the sender. This may be formatted as a string or object. An array of senders is not allowed. |
subject | Subject of the message. |
html | HTML portion of the message. |
text | Text portion of the message. |
content | An array of objects containing the following keys: type (required), value (required). |
template | The template to use. This may be a string (the UUID of the template), an array of UUID's (useful for A/B/... testing where one is randomly selected), or an object of the format {template1Uuid: 0.25, template2Uuid: 0.75} (useful for weighted A/B/... testing). |
dynamic_template_data | The dynamic data to be replaced in your template. This is an object of the format {variable1: 'replacement1', ...} . Variables should be defined in your template body as ${variable1} . |
reply_to | Email address of who should receive replies. This may be a string or an object with name and email keys. |
headers | An object where the header name is the key and header value is the value. |
ip_or_pool_uuid | The UUID of the IP address or IP pool you want to send from. Default is your Global pool. |
unsubscribe_group_uuid | The UUID of the unsubscribe group you want to associate with this email. |
attachments[][content] | A base64 encoded string of your attachment's content. |
attachments[][type] | The MIME type of your attachment. |
attachments[][filename] | The filename of your attachment. |
attachments[][disposition] | The disposition of your attachment (inline or attachment ). |
attachments[][content_id] | The content ID of your attachment. |
clicktracking | Enable or disable clicktracking. |
categories | An array of email categories you can associate with your message. |
substitutions | An object of the format {subFrom: 'subTo', ...} of substitutions. |
Example
amply.email.create({
'to': 'example@test.com',
'from': 'From <example@verifieddomain.com>',
'text': 'Text part',
'html': 'HTML part',
'personalizations': [{'to': [{'name': 'Override To', 'email': 'test@example.com'}]}],
'content': [{'type': 'text/testing', 'value': 'some custom content type'}],
'subject': 'A new email!',
'replyTo': 'Reply To <test@example.com>',
'template': 'faecb75b-371e-4062-89d5-372b8ff0effd',
'dynamicTemplateData': {'name': 'Jimmy'},
'unsubscribeGroupUuid': '5ac48b43-6e7e-4c51-817d-f81ea0a09816',
'ipOrPoolUuid': '2e378fc9-3e23-4853-bccb-2990fda83ca9',
'attachments': [{'content': 'dGVzdA==', 'filename': 'test.txt', 'type': 'text/plain', 'disposition': 'inline'}],
'headers': {'X-Testing': 'Test'},
'categories': ['Test'],
'clicktracking': True,
'substitutions': {'sub1': 'replacement1'}
})
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file amply-mail-0.0.1rc1.tar.gz
.
File metadata
- Download URL: amply-mail-0.0.1rc1.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e510c022a87b86116d042fbd51e36ee87e25e9d308a8bb6053a5b2c9a27b0890 |
|
MD5 | 50f5fa04ab9248bff322fa4ae3625bcb |
|
BLAKE2b-256 | 2b3c0f74abb8d5a47e5f90d318cff1769856d51327c6d3cce115756d978e427b |
File details
Details for the file amply_mail-0.0.1rc1-py2.py3-none-any.whl
.
File metadata
- Download URL: amply_mail-0.0.1rc1-py2.py3-none-any.whl
- Upload date:
- Size: 9.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d6bd3ebb91daf9b13bf17effcc12a2c530aba7288a2275417dbafe98c3d97f4 |
|
MD5 | 4abb47a615b57ea9cabbad8066b388ba |
|
BLAKE2b-256 | 09e8efeb2d38b399abd02f1dabd889e2cb8cf462ab2a2ae243cffe4fea92de30 |