π§SMS/Email
Send sms and emails to engage users and boost conversions.
Last updated
Send sms and emails to engage users and boost conversions.
Last updated
const message = new NativelyMessage()
const send_sms_callback = function (resp) {
console.log(resp.status); // SENT/CANCELLED/FAILED/NOT_ALLOWED (Works only on iOS)
};
const send_email_callback = function (resp) {
console.log(resp.status); // SENT/CANCELLED/FAILED/NOT_ALLOWED/SAVED (Works only on iOS)
};
message.sendSMS(body, recipient, send_sms_callback);
message.sendEmail(subject, body, recipient, send_email_callback);