Enveloop Docs
Search
K
Comment on page

Python SDK

Send messages on Enveloop by using the python SDK

Install the Enveloop node package

pip

python3 -m pip install enveloop-py

Send Messages

from enveloop_py import enveloop
client = enveloop.connect("test_eYLQRrzxLcLAlmb2H5BXIFSUor3h/tRr")
enveloop.sendMessage({
template="user-welcome",
from_address="Chris Traeger <[email protected]>",
subject="Welcome to Pawnee",
template_variables={
"name": "Leslie Knope"
}
})
Last modified 11mo ago