Hacker News new | ask | show | jobs
by mertd 4863 days ago
Assuming comma separated emails, here is the "product" in Python:

    import random, string
    email_list = "a@b.com, c@d.com".split(', ')
    random.shuffle(email_list)
    print string.join(email_list, ', ')