huhongbo / outlook-firestore-sync

✉️ Outlook Add-In to save emails to Google Firestore

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Outlook Add-In: Firestore Sync

License

A simple Outlook Add-In to save emails to Google Firestore.

Setup

Create a config.ts file in the src/env directory

Config needs to export an object that contains emailCollectionPath, attachmentStoragePath and firebaseConfig

Example

export const config = {
  emailCollectionPath: 'PATH TO SAVE EMAILS',
  attachmentStoragePath: 'PATH TO SAVE ATTACHMENTS',
  firebaseConfig: {
    apiKey: "",
    authDomain: "",
    databaseURL: "",
    projectId: "",
    storageBucket: "",
    messagingSenderId: "",
    appId: ""
  }
} 

Running Locally

npm run dev-server

Updating Assets

To change the logo used replace the files found under assets/

About

✉️ Outlook Add-In to save emails to Google Firestore

License:MIT License


Languages

Language:TypeScript 43.7%Language:HTML 21.8%Language:CSS 18.0%Language:JavaScript 16.5%