Comment on page
Python SDK
Send messages on Enveloop by using the python SDK
python3 -m pip install enveloop-py
from enveloop_py import enveloop
client = enveloop.connect("test_eYLQRrzxLcLAlmb2H5BXIFSUor3h/tRr")
enveloop.sendMessage({
template="user-welcome",
to="[email protected]",
from_address="Chris Traeger <[email protected]>",
subject="Welcome to Pawnee",
template_variables={
"name": "Leslie Knope"
}
})
Last modified 11mo ago