# Notification 通知 ## 发送电子邮件 `sendEmail(to, title, content)` 参数说明: * to:对方的 email 地址 * title:邮件标题 * content:邮件内容 ``` js const onSyncTask = async (config, env, op, eventData) => { op.notification.sendEmail('', '', 'mail_content'); }; ```