def create_temp_email(length=10): letters = string.ascii_lowercase random_string = ''.join(random.choice(letters) for i in range(length)) return f"{random_string}@{TEMP_MAIL_ACCOUNT.split('@')[1]}"
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.