Keep getting error when using group merge #323
-
The instructions are very detailed with good screenshots. I've followed them as precisely as I can but I keep getting the below error.
The only thing I've not customized according to the instructions is the markers for mail and group merge.
I've used the traditional gmail/sheets mail merge before and that worked fine. But now I need to send a bunch of emails where one person would otherwise receive 50+ emails. So I'm trying to use this extension to get it down to one per recipient. As a test I removed the group field markers but the result is the same for this extension. Any help would be much much appreciated. I've pasted the debut export, the email draft, and the column headers for the google sheet. Here's the debug export:
Here's the email draft:
Here's the list of fields from the Google sheets
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @dave999dave, thank you for the detailed report!
points to the part where the add-on looks for the spreadsheet that the user specified in the add-on sidebar: This error message by Google says that it can't find the spreadsheet by the URL that the user has specified. Could you check the URL to see if it conforms to the following format?
The point here is to confirm that the URL ends with DetailsThe tricky part is that there are several patterns when designating a spreadsheet URL:
Patterns 1 - 4 all work fine if you are simply entering the URL in your browser, but it is not so in Google Apps Script (GAS), which is the underlying architecture behind this add-on. In GAS, Patterns 1 - 3 are acceptable, while Pattern 4 returns the error that you shared:
So I am hoping that the solution lies in correcting the URL format, but there might be some other variable factors that return the same error; something that I am not aware of. Please don't hesitate to say I'm barking up the wrong tree! The Easiest SolutionIf the cause of this error were in the URL format mentioned above, following the How-to-Use steps in the add-on's webpage would be the easiest way to avoid it; you can let the add-on enter the spreadsheet URL automatically at step 4. But again, since you say you've followed the steps on the web page, this might not be the issue. Your additional feedback will be much appreciated! |
Beta Was this translation helpful? Give feedback.
I've created an issue to add a validation process to the spreadsheet URL: #324