Bulk Email & PDF Merge · Last updated: 2026-09-22
Email se.sato614@gmail.com. This is a one-person project; replies usually take one to two business days.
What to include: what you were trying to do, what happened instead, and — if a row was marked with an error — the exact text of that error. Please do not send us your spreadsheet or your recipient list; we do not want a copy, and we almost never need one to diagnose a problem.
This is expected behaviour, not a failure, and it has two causes.
The daily quota. Google caps how many recipients one account can email per day through Apps Script: 100 for consumer accounts, 1,500 for Google Workspace accounts. The quota resets 24 hours after the first send. No plan, payment, or tool raises it — this limit belongs to your Google account, not to us.
The 6-minute execution limit. Google stops any single Apps Script execution at six minutes. Long runs are therefore processed in batches that stop cleanly and resume.
In both cases, rows already processed are recorded. Running again continues from where it stopped rather than starting over, and nobody is emailed twice.
A placeholder such as {{Name}} appearing literally in the finished PDF means the name
inside the braces does not exactly match a column header in your sheet. Matching is literal:
{{name}} does not match a header of
Name.Merge a single row and open the result before running a list.
Can it read my Gmail? No. The add-on requests
script.send_mail, which can only send. It requests no Gmail API scope,
so reading, searching, or modifying your mailbox is not something it is able to do.
Can it see the rest of my Drive? No. It requests drive.file, and you
choose your template and output folder through Google's own file picker rather than typing a path.
Access is limited to what you pick there, or what the add-on creates itself. It does not request the
full drive scope, so it cannot browse or list the rest of your Drive.
Does my data leave my account? No. The add-on does not request
script.external_request, the permission required to contact any outside server. Without
it there is no mechanism by which your data could be transmitted anywhere. Full detail is in the
Privacy Policy.
Open Google Workspace Marketplace → the Settings (gear) icon → Manage Apps → the ⋮ menu next to Bulk Email & PDF Merge → Remove. This revokes every permission you granted. Documents and PDFs already created stay in your Drive, because they are yours.
If you would rather run your own script than install anything, both guides are complete and free, with code you can keep:
Email se.sato614@gmail.com with “security” in the subject. Please report privately first and give us a reasonable chance to fix the issue before disclosing it.