ajoute une option verbose
This commit is contained in:
parent
4ae4b7fe87
commit
166f4298f9
15
mailing.py
15
mailing.py
@ -53,6 +53,9 @@ def parse_args():
|
|||||||
action="store_true",
|
action="store_true",
|
||||||
help="Load data but don't send anything.",
|
help="Load data but don't send anything.",
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-v", "--verbose", action="store_true",
|
||||||
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-a",
|
"-a",
|
||||||
"--attachement",
|
"--attachement",
|
||||||
@ -180,10 +183,14 @@ def send_message(message, to, attachment, args):
|
|||||||
if attachment:
|
if attachment:
|
||||||
msg.add_attachment(attachment[0], **attachment[1])
|
msg.add_attachment(attachment[0], **attachment[1])
|
||||||
|
|
||||||
print(
|
if args.verbose:
|
||||||
"Sending : %s, from %s to %s, dests : %s"
|
print(msg)
|
||||||
% (subjectvalue, fromvalue, dests[0], repr(dests))
|
print("-" * 80)
|
||||||
)
|
else:
|
||||||
|
print(
|
||||||
|
"Sending : %s, from %s to %s, dests : %s"
|
||||||
|
% (subjectvalue, fromvalue, dests[0], repr(dests))
|
||||||
|
)
|
||||||
|
|
||||||
if not args.dry_run:
|
if not args.dry_run:
|
||||||
# sending the mail to its recipients using the local mailer via SMTP
|
# sending the mail to its recipients using the local mailer via SMTP
|
||||||
|
Loading…
Reference in New Issue
Block a user