Skip to content

Instantly share code, notes, and snippets.

@zeyneloz
Created April 3, 2019 21:44
Show Gist options
  • Save zeyneloz/66765bd9b8f4cfb5196c0d1e5febf5a2 to your computer and use it in GitHub Desktop.
Save zeyneloz/66765bd9b8f4cfb5196c0d1e5febf5a2 to your computer and use it in GitHub Desktop.
exports.handler = async (event) => {
const notes = await getNotes(user.id); // Fetch user notes from database.
const translatedNotes = await translate(notes, event.translateTo); // Translate notes to target language.
await sendMail(user.email, "Your notes", translatedNotes); // Send translated notes to user.
return { message: "You will receive the email soon" };
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment