保持Google Voice活性避免被回收的方法备忘

参考材料

Google Voice 保号的重要性及保号方法-VPS 大玩家 (vpsdawanjia.com)

使用 IFTTT 让 Google Voice 自动回复短信来保号-VPS 大玩家 (vpsdawanjia.com)

Let google voice reply SMS automatically | Study Notes (1983s.com)

收信

Explore - IFTTT 这是个自动化平台,可以设置自动发短信。

Google Voice 保号 - IFTTT

Keep Google Voice Active - IFTTT

回信

Voice 设置转发信息到 Gmail

Gmail 设置筛选器

将来自 @txt.voice.google.com的邮件打 voice 标签。

Google Apps Scripts

Google Drive 添加 Google Apps Scripts(Drive 界面加号按钮,弹出菜单点击“更多”)

脚本源码:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
function autoReplier() {
    var labelObj = GmailApp.getUserLabelByName("voice");
    var gmailThreads;
    var messages;
    var sender;

    for (var gg = 0; gg < labelObj.getUnreadCount(); gg++) {
        gmailThreads = labelObj.getThreads()[gg];
        messages = gmailThreads.getMessages();
        for (var ii = 0; ii < messages.length; ii++) {
            if (messages[ii].isUnread()) {
                msg = messages[ii].getPlainBody();
                sender = messages[ii].getFrom();

                MailApp.sendEmail(
                    sender,
                    "Auto Reply",
                    "Hi, I went travelling for a few days, I'll call you later.",
                );
                messages[ii].markRead();
                messages[ii].moveToTrash();
            }
        }
    }
}

点击一次编辑器左上方区域的“运行”按钮,授权此 Script 使用 Gmail 的权限。

设置触发器(闹钟图标),每日一次,指定功能(Google 翻译错误,应为“函数”)为 autoReplier(应该是默认),其余默认,保存。

除非另有说明,此内容使用 CC BY-SA 4.0 许可。
提交: 82e971b0   环境: production   Hugo: 0.138.0   时间: 1732156496
作者对于因使用或解读所提供内容而导致的任何直接或间接后果不承担任何责任。
使用 Hugo 构建
主题 StackJimmy 设计