diff --git a/email.ts b/email.ts index 398b59a..e9725b8 100644 --- a/email.ts +++ b/email.ts @@ -16,6 +16,7 @@ export async function sendEmail() { from: `${config.emailFrom} <${config.emailUser}>`, to: config.emailRecipient, subject: config.title, + text: `Sent by Omnivore EPUB (https://github.com/agrmohit/omnivore-epub)`, attachments: [ { path: config.outputFileName, diff --git a/main.ts b/main.ts index 89ea6f7..21c3ab4 100644 --- a/main.ts +++ b/main.ts @@ -4,7 +4,7 @@ import epub, { Chapter } from "npm:epub-gen-memory"; import config from "./config.json" with { type: "json" }; import { sendEmail } from "./email.ts"; -const currentVersion = "v0.4.0"; +const currentVersion = "v0.4.1"; console.log(`ℹ Omnivore EPUB ${currentVersion}`); console.log("ℹ️ Homepage: https://github.com/agrmohit/omnivore-epub");