Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/harshjv/gmail-mail-merge
- Owner: harshjv
- License: mit
- Created: 2016-04-01T16:49:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-07-06T08:10:48.000Z (over 3 years ago)
- Last Synced: 2024-06-12T06:26:59.594Z (5 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 41
- Watchers: 11
- Forks: 22
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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