Skip to content

Instantly share code, notes, and snippets.

@escattone
Created May 22, 2020 01:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save escattone/a05fa99fb6d7608f0b767d459f30bf60 to your computer and use it in GitHub Desktop.
Save escattone/a05fa99fb6d7608f0b767d459f30bf60 to your computer and use it in GitHub Desktop.
Send welcome emails to the 11 users whose email failed to send on May 21, 2020
from kuma.users.tasks import send_welcome_email
users = [
(723329, "en-US"),
(723330, "en-US"),
(723331, "fr"),
(723332, "es"),
(723336, "en-US"),
(723337, "es"),
(723338, "en-US"),
(723339, "en-US"),
(723340, "ru"),
(723341, "en-US"),
(723342, "en-US"),
]
for pk, locale in users:
send_welcome_email(pk, locale)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment