Guest User

Untitled

a guest
Jul 16th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. for y in x['emails']:
  2. message = "".join([
  3. _("Hi "),
  4. name,
  5. ",rnrn",
  6. "I am sending you an invite to join my club",
  7. " at aLOTof premium lottery.",
  8. "rnPlease follow the link below to join:",
  9. "rnrn",
  10. BASE_URL + "PreRegistration/?clubid=",
  11. request.session['club_id'],
  12. "&email=",
  13. y,
  14. "rnrn",
  15. "Thanks,rn",
  16. fullname.capitalize()
  17. ])
  18.  
  19. send_mail('aLOTof Club Invitation',
  20. message,
  21. fullname.capitalize(),
  22. [y])
  23.  
  24. ",rnrn",
  25. "I am sending you an invite to join my club",
  26. " at aLOTof premium lottery.",
  27. "rnPlease follow the link below to join:",
  28. "rnrn",
Add Comment
Please, Sign In to add comment