Best Python code snippet using Kiwi_python
email.py
Source:email.py  
...4def email_plan_update(plan):5    recipients = get_plan_notification_recipients(plan)6    if not recipients:7        return8    subject, body = history_email_for(plan, plan.name)9    mailto(None, subject, recipients, body)10def get_plan_notification_recipients(plan):  # pylint: disable=invalid-name11    recipients = set()12    if plan.author and plan.emailing.auto_to_plan_author:13        recipients.add(plan.author.email)14    if plan.emailing.auto_to_case_owner:15        case_authors = plan.cases.values_list("author__email", flat=True)16        recipients.update(case_authors)  # pylint: disable=objects-update-used17    if plan.emailing.auto_to_case_default_tester:18        case_testers = plan.cases.values_list("default_tester__email", flat=True)19        recipients.update(case_testers)  # pylint: disable=objects-update-used20    # don't email author of last change21    recipients.discard(getattr(plan.history.latest().history_user, "email", ""))22    return list(filter(bool, recipients))Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
