You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
- Great Code. I just implemented an autoreply system to send zoom links for meetings...too many people were asking for the links 5 minutes before the meeting start and this was a a great way to tell them "text ZOOM to (201)555-1234" and the link will be returned. I created a gmail filter to detect the word 'zoom' in incoming texts, tag the message with the appropriate label, and this code will automagically reply with the link. I think the next enhancement is for it to retrieve a specific "template" from gmail to use as the autoreply text so zoom link changes don't require app changes.DavidG– DavidG2021-10-06 21:32:46 +00:00Commented Oct 6, 2021 at 21:32
- i'm so happy this is of use to someone else. One caveat - if you end up sending one of these auto-replies to a number that will send an auto-reply back to you, you could end up bouncing back and forth. i keep worrying about this, because I'm not sure if that would end up getting you or the other person marked as spam at some point by your carrier. I keep thinking it might be good to have some check to see if you've received x number of replies from the user you're about to reply to in the last y minutes, or something like that, and if so, skip the auto-reply. just a thought!bikz– bikz2021-10-06 21:39:50 +00:00Commented Oct 6, 2021 at 21:39
- excellent idea on the template by the way. i hadn't thought about that.bikz– bikz2021-10-06 21:40:15 +00:00Commented Oct 6, 2021 at 21:40
- I think the main way to avoid the bouncing SMSs is to ensure the gmail filter doesn't label bounced responses. In my use case, I could see some sort of thumbs up emoticon being an autoreply from the other end, but it would not have the word 'zoom' in it. Crafting the gmail filter which adds the label is key. For me it was a bit of a challenge, since I have other gmail filters such as autoforwards and I don't want incoming 'zoom' requests to be forwarded, I had to adjust the autoforward filters to ignore the txt.voice.google.com Froms with the word ZOOM, but allow other SMSs to be forward..DavidG– DavidG2021-10-07 12:00:32 +00:00Commented Oct 7, 2021 at 12:00
- @DavidG - I wanted to give you a heads up - today I went to log in to Google Voice and found they had suspended my account. I only ever used this number to contact my friends and family, and that too was rare, so I can only assume its because i had these auto-replies set up. Please be careful, perhaps this violates Googles TOS, if it does, be aware your account could be suspended. I have made an appeal to their account team, not sure what will happen. So sorry if this led you down the wrong road. Pity, I just wanted to send replies so people would not think I was ignoring them while I'm away.bikz– bikz2022-03-21 21:24:48 +00:00Commented Mar 21, 2022 at 21:24
| Show 3 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. google-sheets), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you