Open an email
Example 1: Feedback Request
jsxCopy code
(data, liveData, event, element, player) => {
const subject = "Feedback on Tutorial Video";
const message = "Please share your thoughts or suggestions regarding the tutorial you just watched.";
const mail = "feedback@yoursite.com";
window.open(`mailto:${mail}?subject=${subject}&body=${message}`);
}
Example 2: Contact Support
Last updated

