Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webd97/mailbuddy
https://github.com/webd97/mailbuddy
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/webd97/mailbuddy
- Owner: webD97
- License: mit
- Created: 2020-02-02T10:18:45.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-07T22:11:18.000Z (over 1 year ago)
- Last Synced: 2024-10-23T03:59:09.883Z (29 days ago)
- Language: TypeScript
- Size: 392 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MailBuddy
E-mail automation simplified.## Example
```js
async function main() {
const buddy = await MailBuddy.create({
host: 'outlook.office365.com',
user: '...',
password: '...',
port: 993,
tls: true
});buddy.addListener((mail) => {
mail.filter(mail => mail.headers.from.includes('REWE eBon '))
.forEach(mail => console.log(mail));
});
}main().catch(console.error);
```