Guest User

Untitled

a guest
Jan 11th, 2019
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. const nodemailer = require("nodemailer");
  2.  
  3. // -------- EMAIL ----------
  4.  
  5. router.get('/askForCookiesRecipe', function (req, res, next) {
  6. var smtpTransport = nodemailer.createTransport({
  7. host:"moutierquiafaim.gmail.com",
  8. port:465,
  9. secure:true,
  10. auth: {
  11. user: "geronimo@gmail.com",
  12. pass: "Ouhiouuuuuuu1900"
  13. }
  14. });
  15.  
  16. smtpTransport.sendMail({
  17. from: "Deer Wild <geronimo@gmail.com>", // Expediteur
  18. to: "supergrandma@yopmail.com", // Destinataires
  19. subject: "Recette", // Sujet
  20. text: "Le Pudding a L'arsenic✔", // plaintext body
  21. html: "<b>Emiettez votre vodka, Dans un verre , Deux cuillères de purgatif, Qu'on fait bouillir à feu vif... ✔</b>" // html body
  22. }, (error, response) => {
  23. if(error){
  24. console.log(error);
  25. }else{
  26. console.log("Message sent: " + response.message);
  27. }
  28. })
  29. res.end()
  30. });
  31.  
  32.  
  33.  
  34. // ----------------------------
Add Comment
Please, Sign In to add comment