Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. mail_settings: {
  2. sandbox_mode: {
  3. enable: process.env.NODE_ENV === 'test',
  4. },
  5. }
  6.  
  7. const msg = {
  8. to: email,
  9. from: EMAIL_FROM,
  10. subject,
  11. replyTo: REPLY_TO,
  12. dynamicTemplateData,
  13. templateId,
  14. mail_settings: {
  15. sandbox_mode: {
  16. enable: process.env.NODE_ENV === 'test',
  17. },
  18. }
  19. };
  20. sgMail.send(msg)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement