Send bulk email with Python
Send bulk email to a group of email address with Python
Python : API DOCUMENTATION
- Create group with Python
- Get group field list with Python
- Add a field to a group with Python
- Delete a field from a group with Python
- Delete a contact from a group
- Assing country to e group with Python
- Get group contact list with Python
- Add contact to a group with Python
- Modify contact of a group with Python
- Delete contact of a group with Python
Send bulk email with Python
import urllib2
afilnet_class="email"
afilnet_method="sendemailtogroup"
afilnet_user="user"
afilnet_password="password"
afilnet_subject="Afilnet - Test email"
afilnet_idgroup="1"
afilnet_email="Afilnet - Test email"
afilnet_scheduledatetime=""
afilnet_output=""
# Create an URL request
sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&subject="+afilnet_subject+"&idgroup="+afilnet_idgroup+"&email="+afilnet_email+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
result = urllib2.urlopen(sUrl).read()
from urllib.request import urlopen
from urllib.parse import urlencode
afilnet_class="email"
afilnet_method="sendemailtogroup"
afilnet_user="user"
afilnet_password="password"
afilnet_subject="Afilnet - Test email"
afilnet_idgroup="1"
afilnet_email="Afilnet - Test email"
afilnet_scheduledatetime=""
afilnet_output=""
# Create an URL request
sUrl = "https://www.afilnet.com/api/http/"
data = urlencode({"class": afilnet_class,"method": afilnet_method,"user": afilnet_user,"password": afilnet_password,"subject": afilnet_subject,"idgroup": afilnet_idgroup,"email": afilnet_email,"scheduledatetime": afilnet_scheduledatetime,"output": afilnet_output}).encode("utf-8")
result = urlopen(sUrl, data).read()
print(result)
import requests
afilnet_class="email"
afilnet_method="sendemailtogroup"
afilnet_user="user"
afilnet_password="password"
afilnet_subject="Afilnet - Test email"
afilnet_idgroup="1"
afilnet_email="Afilnet - Test email"
afilnet_scheduledatetime=""
afilnet_output=""
# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&subject="+afilnet_subject+"&idgroup="+afilnet_idgroup+"&email="+afilnet_email+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
result = requests.get(sUrl,auth=requests.auth.HTTPBasicAuth(afilnet_user,afilnet_password))
print(result.text)
Parameter | Description | Compulsory / Optional |
---|---|---|
class=email | Class requested: Class to which the request is made | Compulsory |
method=sendemailtogroup | Class method requested: Method of the class to which the request is made | Compulsory |
user | User and e-mail of your Afilnet account | Compulsory |
password | Password of your Afilnet account | Compulsory |
subject | Remitente | Compulsory |
idgroup | Identifier of the destination group | Compulsory |
Email message to be sent | Compulsory | |
scheduledatetime | Delivery date and time in yyyy-mm-dd hh:mm:ss format | Optional |
output | Output format of the result | Optional |
When you make requests you will receive the following fields:
- status
-
result (if status=success), here you will receive the following values:
- id
- count
- credits
-
destinations
- messageid
- destination
- error (if status=error), here you will receive the error code
The possible error codes are listed below
Code | Description |
---|---|
MISSING_USER | User or email not included |
MISSING_PASSWORD | Password not included |
MISSING_CLASS | Class not included |
MISSING_METHOD | Method not included |
MISSING_COMPULSORY_PARAM | Compulsory parameter not included |
INCORRECT_USER_PASSWORD | Incorrect user or password |
INCORRECT_CLASS | Incorrect class |
INCORRECT_METHOD | Incorrect method |
NOT_ACCESS_TO_GROUP | You are not allowed into the indicated group |
NO_CREDITS | Your balance is insufficient |
Parameters:
- class : email
- method : sendemailtogroup
- user : user
- password : password
- subject : Afilnet - Test email
- idgroup : 1
- email : Afilnet - Test email
- scheduledatetime :
- output :
Request:
https://www.afilnet.com/api/http/?class=email&method=sendemailtogroup&user=user&password=password&subject=Afilnet - Test email&idgroup=1&email=Afilnet - Test email&scheduledatetime=&output=