magpie.cli.send_email

Sends email notification using SMTP connection defined from configuration.

Useful for validation of SMTP settings retrieved from an INI file or debugging the rendered email contents.

Module Contents

Classes

EmailTemplateChoiceFormatter

Formatter for generating usage messages and argument help strings.

Functions

make_parser(→ argparse.ArgumentParser)

main(→ Any)

Attributes

UserConfig

LOGGER

magpie.cli.send_email.UserConfig[source]
magpie.cli.send_email.LOGGER[source]
class magpie.cli.send_email.EmailTemplateChoiceFormatter(prog, indent_increment=2, max_help_position=24, width=None)[source]

Bases: argparse.HelpFormatter

Formatter for generating usage messages and argument help strings.

Only the name of this class is considered a public API. All the methods provided by the class are considered an implementation detail.

_format_action(action)[source]

Override the returned help message with available options and shortcuts for email template selection.

magpie.cli.send_email.make_parser() argparse.ArgumentParser[source]
magpie.cli.send_email.main(args: Sequence[magpie.typedefs.Str] | None = None, parser: argparse.ArgumentParser | None = None, namespace: argparse.Namespace | None = None) Any[source]