-
-
Notifications
You must be signed in to change notification settings - Fork 0
Customization
Auto Announcements is designed to be highly customizable. The send and receive addresses can be changed, as well as the message body.
All of these instructions require a text editor to be installed.
The bot can be configured to always use the same send email address every time it is run, rather than manually asking. To enable this, follow these steps:
-
Line 8: Replace the
input('YOUR email address:')
with the email address that the bot should always send from. -
Line 9: Remove the
# replace above with your email address for direct delivery
comment.
The bot can also be configured to always use the same recipient address every time it is run, rather than manually asking. To enable this, follow these steps:
-
Line 10: Replace the
input('RECIPIENT\'s email address:')
with the email address that the bot should always send to. -
Line 11: Remove the
# replace above with the recipients email address for direct delivery
comment.
This bot supports sending an HTML
formatted email message. To change the email message that is sent each time it is run, follow these steps:
-
Line 18: Remove the
<h1>A Heading</h1><p>Hello There!</p>
text between the two apostrophes ('...'
). - Replace this text with a single line of
HTML
code for your email message. If the email message is longer than a single line, just ensure the code is minified to fit on one line.
Want to make a change? Open an issue!
Want a basic overview? Read the README
.
Want to download the project? Head to the Releases page.
Want to start contributing? Open an Issue or a Pull Request.