Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/harshjv/gmail-mail-merge

⚡️ Google Script for Mail Merge using Spreadsheet and Gmail
https://github.com/harshjv/gmail-mail-merge

Last synced: 3 months ago
JSON representation

⚡️ Google Script for Mail Merge using Spreadsheet and Gmail

Awesome Lists containing this project

README

        

# ⚡️ Mail Merge using Spreadsheet and Gmail

> This script will use the ***most recent*** draft in Gmail as a ***template***.

## Features

* Handles duplicate entries (by email address)
* Works with HTML and plain text emails

## Usage

1. Open Spreadsheet
2. Go to `Tools > Script editor...`
1. Paste contents of `mailmerge.gs` there
2. Save it
3. After saving script, you will notice a new menu **Mail Merege** in Spreadsheet
4. From Spreadsheet, Go to `Mail Merge > Send mail`

### Example Spreadsheet

| First name | Last name | Email |
| ---------- | --------- | ----------- |
| Abc | Xyz | [email protected] |
| Def | Pqr | [email protected] |

### Template

```
To: Email (here, put the title of email column)
Body:
Hello {{First name}} {{Last name}}...
```

### Email Outcome

```
To: [email protected]
Body:
Hello Abc Xyz...
```

## License

MIT