Gmail Importer
Auth Status: {auth?.user?.email
? `✅ Authenticated as ${auth.user.email}`
: "❌ Not authenticated - Please link to a gmail-auth charm"}
Imported email count: {derive(emails, (emails) =>
emails.get().length)}
historyId: {settings.historyId || "none"}
Fetch Emails
| DATE |
SUBJECT |
LABEL |
CONTENT |
{emails.map((email) => (
|
{email.date}
|
{email.subject}
|
{derive(
email,
(email) => email?.labelIds?.join(", "),
)}
|
Show Markdown
{email.markdownContent}
|
))}
),
emails,
bgUpdater: googleUpdater({ emails, auth, settings }),
};
},
);