Scheduled transactional messages (Beta)

It is now possible to schedule transactional messages to be sent in the future. You can define a single transactional email or configure a batch send-out with millions of versions.

You can achieve this by making use of our new scheduledAt parameter in the Send a transactional message endpoint

1{
2 "sender": {
3 "email": "hello@sendinblue.com"
4 },
5 "subject": "This is my default subject line",
6 "templateId": 43,
7 "params": {
8 "greeting": "This is the default greeting",
9 "headline": "This is the default headline"
10 },
11 "scheduledAt":"2022-02-28T14:22:51.970+05:30",
12 "messageVersions": [
13 {
14 "to": [
15 {
16 "email": "recipient0@sendinblue.com"
17 }
18 ],
19 "params": {
20 "greeting": "Hello again!",
21 "headline": "Take advantage of our summer deals, taylored just for you"
22 },
23 "subject": "Some deals worth to be looked at!"
24 },
25 {
26 "to": [
27 {
28 "email": "recipient1@sendinblue.com"
29 }
30 ],
31 "params": {
32 "greeting": "Hello Marie, we have prepared some exclusive summer deals for you.",
33 "headline": "Some bathing suits you might like"
34 },
35 "subject": "Marie, new bathing suits are here."
36 }
37 ]

Check out the full feature guide here! 🎉