1

我尝试在 script.google.com ( https://developers.google.com/gmail/schemas/apps-script-tutorial ) 上运行测试脚本,并且在发送电子邮件时,操作按钮未启用。

我想知道这是否是因为我以谷歌应用程序用户 (me@mydomain.com) 身份登录。我在邮件标题中看到了 SPF pass 和 DKIM,并且在我的 google 应用程序 gmail 中看到了其他操作按钮。

Delivered-To: me@mydomain.com
Received: by 10.49.47.9 with SMTP id z9csp53721qem;
        Wed, 12 Jun 2013 09:56:05 -0700 (PDT)
X-Received: by 10.182.126.226 with SMTP id nb2mr15714364obb.34.1371056165241;
        Wed, 12 Jun 2013 09:56:05 -0700 (PDT)
Return-Path: <3JKi4UQUJBekOLcjYOLcjY.YPeOLcjYOLcjY.YPe@maestro.bounces.google.com>
Received: from mail-oa0-x246.google.com (mail-oa0-x246.google.com [2607:f8b0:4003:c02::246])
        by mx.google.com with ESMTPS id r7si17176840obg.111.2013.06.12.09.56.04
        for <me@mydomain.com>
        (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128);
        Wed, 12 Jun 2013 09:56:05 -0700 (PDT)
Received-SPF: pass (google.com: domain of 3JKi4UQUJBekOLcjYOLcjY.YPeOLcjYOLcjY.YPe@maestro.bounces.google.com designates 2607:f8b0:4003:c02::246 as permitted sender) client-ip=2607:f8b0:4003:c02::246;
Authentication-Results: mx.google.com;
       spf=pass (google.com: domain of 3JKi4UQUJBekOLcjYOLcjY.YPeOLcjYOLcjY.YPe@maestro.bounces.google.com designates 2607:f8b0:4003:c02::246 as permitted sender) smtp.mail=3JKi4UQUJBekOLcjYOLcjY.YPeOLcjYOLcjY.YPe@maestro.bounces.google.com
Received: by mail-oa0-f70.google.com with SMTP id i4so1520067oah.9
        for <me@mydomain.com>; Wed, 12 Jun 2013 09:56:04 -0700 (PDT)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=google.com; s=20120113;
        h=mime-version:message-id:date:subject:from:to:content-type
         :x-gm-message-state;
        bh=nniz4GW4RjisC3jKnq4Um4I4sY/FfW0e4vae0CbzrBM=;
        b=ZdAFsXiPt/07HwxkeNc1VDF+5XzOKT73W9gweiNQOiyeixAVYoLpmlrRWY6XXo3X1j
         O/kHu7wMMNJI84Pcv4GLB8LmIedGKTgKYvo+WIx9FAfZxYf2zW41mwPh7GysdZQ7RivF
         1euibwDPLypdd89MSTCSA3MBk62VnpExUMra0Og0yPjGszqIYW/Jt0YAREGP7ldOr/7j
         K0b/Fi3XB11sG+3ywu3ctNs+7RzZ7IyV3pXGEV6OvMjkZzOX+NnnXVqw8ZoAHm1wJHIc
         iqQrhiZ0AeT8HGip+lfbPrSuH5PLF1CtGlFce9GUCqIWWy/TiiVQ5Hat7I9cN/uuo7aO
         RDqg==
MIME-Version: 1.0
X-Received: by 10.182.56.200 with SMTP id c8mr4437548obq.33.1371056164810;
 Wed, 12 Jun 2013 09:56:04 -0700 (PDT)
Message-ID: <001a11c2c236ac8fb004def7e33f@google.com>
Date: Wed, 12 Jun 2013 16:56:04 +0000
Subject: Test Actions in the Inbox - Wed Jun 12 2013 09:56:04 GMT-0700 (PDT)
From: me@mydomain.com
To: me@mydomain.com
Content-Type: multipart/alternative; boundary=001a11c2c236ac8fa304def7e33c
X-Gm-Message-State: ALoCoQk0dwVXVKag+tFK/DdT/gjAPLfjoz8w8Rfbzz8Q2GT0xh0oIly9+Yi2acnPA69hEefyluux

--001a11c2c236ac8fa304def7e33c
Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes

This a test for a Go-To action in Gmail.

--001a11c2c236ac8fa304def7e33c
Content-Type: text/html; charset=ISO-8859-1

<html>
  <head>
    <script type="application/ld+json">
    {
      "@context":       "http://schema.org",
      "@type":          "EmailMessage",
      "description":    "Check this out",
      "action": {
        "@type": "ViewAction",
        "url":   "https://www.youtube.com/watch?v=eH8KwfdkSqU"
      }
    }
    </script>
  </head>
  <body>
    <p>
      This a test for a Go-To action in Gmail.
    </p>
  </body>
</html>
--001a11c2c236ac8fa304def7e33c--
4

1 回答 1

0

Google Apps 域获取更新的时间表与 Gmail 用户不同,实际上域管理员可以选择在预定发布轨道或快速发布轨道上进行更新:

http://whatsnew.googleapps.com/release-tracks

我猜您的域在计划发布轨道上,并且对 Actions 的支持尚未推出。

于 2013-06-12T18:39:28.173 回答