Right now, we're dumping a JSON object for each email that we send. For example:
> python send_mail.py --subject "HANDSTRENGTH September Meetup" body.html
{"To":"jacobbellemail@gmail.com","SubmittedAt":"2023-09-05T00:22:07.8739859Z","MessageID":"c61dafd8-068f-4197-90d7-909d047431b6","ErrorCode":0,"Message":"OK"}
And I'd rather prettify this because it's hard to scan through the raw output, especially when we're sending hundreds of emails.
Right now, we're dumping a JSON object for each email that we send. For example:
```
> python send_mail.py --subject "HANDSTRENGTH September Meetup" body.html
{"To":"jacobbellemail@gmail.com","SubmittedAt":"2023-09-05T00:22:07.8739859Z","MessageID":"c61dafd8-068f-4197-90d7-909d047431b6","ErrorCode":0,"Message":"OK"}
```
And I'd rather prettify this because it's hard to scan through the raw output, especially when we're sending hundreds of emails.
abner
self-assigned this 2023-09-22 19:06:09 +00:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Right now, we're dumping a JSON object for each email that we send. For example:
And I'd rather prettify this because it's hard to scan through the raw output, especially when we're sending hundreds of emails.