Sparkpost has simple python api:
from sparkpost import SparkPost
sp = SparkPost('YOUR API KEY')
response = sp.transmissions.send(
use_sandbox=True,
recipients=['[email protected]'],
html='<p>Hello world</p>',
from_email='[email protected]',
subject='Hello from python-sparkpost'
)
print(response)
However I get the following error:
SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c
:581)
Could be something with the python version in web2py.exe (I am useing
web2py_2_14_06)
Any idea
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.