用户 Gmail 账号中的邮件。
方法
方法 | 返回类型 | 简介 |
---|---|---|
create | Gmail | 使用“回复”地址创建回复此邮件发件人的草稿邮件。 |
create | Gmail | 使用回复地址(可选参数)创建回复此邮件发件人的草稿邮件。 |
create | Gmail | 使用“回复”地址和此邮件的所有收件人创建回复草稿。 |
create | Gmail | 使用回复地址和所有收件人(可选参数)创建回复此邮件发件人的草稿邮件。 |
forward(recipient) | Gmail | 将此邮件转发给新收件人。 |
forward(recipient, options) | Gmail | 使用可选实参将此邮件转发给新收件人。 |
get | Gmail | 获取此邮件的所有附件。 |
get | Gmail | 获取此邮件的所有附件。 |
get | String | 获取此邮件的密送收件人(以英文逗号分隔)。 |
get | String | 获取此邮件正文的 HTML 内容。 |
get | String | 获取此邮件的抄送收件人(以英文逗号分隔)。 |
get | Date | 获取此消息的日期和时间。 |
get | String | 获取该邮件的发件人。 |
get | String | 给定标头名称,获取 RFC 2822 标头的值。 |
get | String | 获取此消息的 ID。 |
get | String | 获取此邮件正文的内容,不带 HTML 格式。 |
get | String | 获取此邮件的原始内容。 |
get | String | 获取此邮件的回复地址(通常是发件人)。 |
get | String | 获取该邮件的主题。 |
get | Gmail | 获取包含此消息的会话。 |
get | String | 获取此邮件的逗号分隔的收件人。 |
is | Boolean | 获取此邮件是否为草稿。 |
is | Boolean | 获取此消息是否为聊天消息。 |
is | Boolean | 获取此邮件是否在收件箱中。 |
is | Boolean | 如果此邮件位于“重要收件箱”中,则返回 true ;否则,返回 false 。 |
is | Boolean | 获取此邮件是否位于回收站中。 |
is | Boolean | 获取此邮件是否已加星标。 |
is | Boolean | 获取此消息是否未读。 |
mark | Gmail | 将邮件标记为已读。 |
mark | Gmail | 将邮件标记为未读。 |
move | Gmail | 将邮件移至回收站。 |
refresh() | Gmail | 从 Gmail 重新加载此邮件及其关联状态(如果标签、已读状态等已更改,此操作非常有用)。 |
reply(body) | Gmail | 使用回复地址回复此邮件的发件人。 |
reply(body, options) | Gmail | 使用回复地址(可选参数)回复此邮件的发件人。 |
reply | Gmail | 使用“回复”地址和此邮件的所有收件人回复发件人。 |
reply | Gmail | 使用回复地址和所有收件人(可选参数)回复此邮件的发件人。 |
star() | Gmail | 为邮件加星标。 |
unstar() | Gmail | 为消息移除星标。 |
详细文档
create Draft Reply(body)
使用“回复”地址创建回复此邮件发件人的草稿邮件。电子邮件(包括标头)的大小超出了配额限制。
// Create a draft reply to the original message with an acknowledgment. const firstThread = GmailApp.getInboxThreads(0, 1)[0]; const message = firstThread.getMessages()[0]; message.createDraftReply('Got your message');
参数
名称 | 类型 | 说明 |
---|---|---|
body | String | 电子邮件的正文。 |
返回
Gmail
- 新创建的草稿消息。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
create Draft Reply(body, options)
使用回复地址(可选参数)创建回复此邮件发件人的草稿邮件。
电子邮件可以同时包含纯文本正文和 HTML 正文。电子邮件(包括标头)的大小超出了配额限制。
// Create a draft response with an HTML text body. const firstThread = GmailApp.getInboxThreads(0, 1)[0]; const message = firstThread.getMessages()[0]; message.createDraftReply('incapable of HTML', { htmlBody: '<b>some HTML body text</b>', cc: 'another@example.com', });
参数
名称 | 类型 | 说明 |
---|---|---|
body | String | 电子邮件的正文。 |
options | Object | 用于指定高级参数的 JavaScript 对象,如下所列。 |
高级参数
名称 | 类型 | 说明 |
---|---|---|
attachments | Blob | 要随电子邮件发送的文件数组 |
bcc | String | 以英文逗号分隔的密件抄送电子邮件地址列表 |
cc | String | 以英文逗号分隔的抄送电子邮件地址列表 |
from | String | 电子邮件的发件人地址,必须是 Gmail 返回的值之一 |
html | String | 设置后,能够呈现 HTML 的设备会使用它,而不是必需的 body 参数;如果您为电子邮件内嵌了图片,则可以在 HTML 正文中添加可选的 inline 字段 |
inline | Object | 一个 JavaScript 对象,包含从图片键 (String ) 到图片数据 (Blob ) 的映射;这假定使用了 html 参数,并且包含采用 <img src="cid:imageKey" /> 格式的这些图片的引用 |
name | String | 电子邮件发件人的姓名(默认:用户的姓名) |
reply | String | 要用作默认回复地址的电子邮件地址(默认:用户的电子邮件地址) |
subject | String | 电子邮件的新主题行,最多 250 个字符。 |
返回
Gmail
- 新创建的草稿消息。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
create Draft Reply All(body)
使用“回复”地址和此邮件的所有收件人创建回复草稿。电子邮件(包括标头)的大小超出了配额限制。
// Create a draft response to all recipients (except those bcc'd) with an // acknowledgment. const firstThread = GmailApp.getInboxThreads(0, 1)[0]; const message = firstThread.getMessages()[0]; message.createDraftReplyAll('Got your message');
参数
名称 | 类型 | 说明 |
---|---|---|
body | String | 电子邮件的正文。 |
返回
Gmail
- 新创建的草稿消息。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
create Draft Reply All(body, options)
使用回复地址和所有收件人(可选参数)创建回复此邮件发件人的草稿邮件。
电子邮件可以同时包含纯文本正文和 HTML 正文。电子邮件(包括标头)的大小超出了配额限制。
// Create a draft response to all recipients (except those bcc'd) using an HTML // text body. const firstThread = GmailApp.getInboxThreads(0, 1)[0]; const message = firstThread.getMessages()[0]; message.createDraftReplyAll('incapable of HTML', { htmlBody: '<b>some HTML body text</b>', cc: 'another@example.com', });
参数
名称 | 类型 | 说明 |
---|---|---|
body | String | 电子邮件的正文。 |
options | Object | 用于指定高级参数的 JavaScript 对象,如下所列。 |
高级参数
名称 | 类型 | 说明 |
---|---|---|
attachments | Blob | 要随电子邮件发送的文件数组 |
bcc | String | 以英文逗号分隔的密件抄送电子邮件地址列表 |
cc | String | 以英文逗号分隔的抄送电子邮件地址列表 |
from | String | 电子邮件的发件人地址,必须是 Gmail 返回的值之一 |
html | String | 设置后,能够呈现 HTML 的设备会使用它,而不是必需的 body 参数;如果您为电子邮件内嵌了图片,则可以在 HTML 正文中添加可选的 inline 字段 |
inline | Object | 一个 JavaScript 对象,包含从图片键 (String ) 到图片数据 (Blob ) 的映射;这假定使用了 html 参数,并且包含采用 <img src="cid:imageKey" /> 格式的这些图片的引用 |
name | String | 电子邮件发件人的姓名(默认:用户的姓名) |
reply | String | 要用作默认回复地址的电子邮件地址(默认:用户的电子邮件地址) |
subject | String | 电子邮件的新主题行,最多 250 个字符。 |
返回
Gmail
- 新创建的草稿消息。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
forward(recipient)
将此邮件转发给新收件人。电子邮件(包括标头)的大小超出了配额限制。
// Forward first message of first inbox thread to recipient1 & recipient2, // both @example.com const firstThread = GmailApp.getInboxThreads(0, 1)[0]; const message = firstThread.getMessages()[0]; message.forward('recipient1@example.com,recipient2@example.com');
参数
名称 | 类型 | 说明 |
---|---|---|
recipient | String | 以英文逗号分隔的电子邮件地址列表。 |
返回
Gmail
- 此消息适用于串联。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
forward(recipient, options)
将此邮件转发给新收件人,并附带可选实参。
电子邮件可以同时包含纯文本正文和 HTML 正文。电子邮件(包括标头)的大小超出了配额限制。
const firstThread = GmailApp.getInboxThreads(0, 1)[0]; const message = firstThread.getMessages()[0]; message.forward('recipient1@example.com,recipient2@example.com', { cc: 'myboss@example.com', bcc: 'mybosses-boss@example.com,vp@example.com', });
参数
名称 | 类型 | 说明 |
---|---|---|
recipient | String | 以英文逗号分隔的电子邮件地址列表。 |
options | Object | 用于指定高级参数的 JavaScript 对象,如下所列。 |
高级参数
名称 | 类型 | 说明 |
---|---|---|
attachments | Blob | 要随电子邮件发送的文件数组 |
bcc | String | 以英文逗号分隔的密件抄送电子邮件地址列表 |
cc | String | 以英文逗号分隔的抄送电子邮件地址列表 |
from | String | 电子邮件的发件人地址,必须是 Gmail 返回的值之一 |
html | String | 设置后,能够呈现 HTML 的设备会使用它,而不是必需的 body 参数;如果您为电子邮件内嵌了图片,则可以在 HTML 正文中添加可选的 inline 字段 |
inline | Object | 一个 JavaScript 对象,包含从图片键 (String ) 到图片数据 (Blob ) 的映射;这假定使用了 html 参数,并且包含采用 <img src="cid:imageKey" /> 格式的这些图片的引用 |
name | String | 电子邮件发件人的姓名(默认:用户的姓名) |
no | Boolean | true (如果应使用通用的无回复电子邮件地址发送电子邮件,以阻止收件人回复电子邮件;此选项仅适用于 Google Workspace 账号,不适用于 Gmail 用户) |
reply | String | 要用作默认回复地址的电子邮件地址(默认:用户的电子邮件地址) |
subject | String | 电子邮件的新主题行,最多 250 个字符。 |
返回
Gmail
- 此消息适用于串联。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
get Attachments()
获取此邮件的所有附件。
返回
Gmail
- 此邮件的 Blob 附件数组。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
get Attachments(options)
获取此邮件的所有附件。
参数
名称 | 类型 | 说明 |
---|---|---|
options | Object | 用于指定高级参数的 JavaScript 对象,如下所列。 |
高级参数
名称 | 类型 | 说明 |
---|---|---|
include | Boolean | true ,如果返回的 Blob 附件数组应包含内嵌图片(默认为 true )。 |
include | Boolean | 如果返回的 Blob 附件数组应包含常规(非内嵌)附件,则为 true (默认为 true )。 |
返回
Gmail
- 此邮件的 Blob 附件数组。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
get Bcc()
获取此邮件的密送收件人(以英文逗号分隔)。
从定义上讲,所有收到的消息的此字段均为空。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(message.getBcc()); // Log bcc'd addresses
返回
String
- 此邮件的密送收件人(以英文逗号分隔)。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
get Body()
获取此邮件正文的 HTML 内容。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(message.getBody()); // Log contents of the body
返回
String
- 此邮件的正文内容。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
get Cc()
获取此邮件的抄送收件人(以英文逗号分隔)。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(message.getCc()); // Log cc'd addresses
返回
String
- 此邮件的抄送收件人(以英文逗号分隔)。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
get Date()
获取此消息的日期和时间。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(message.getDate()); // Log date and time of the message
返回
Date
- 此邮件的日期和时间。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
get From()
获取此邮件的发件人。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(message.getFrom()); // Log from address of the message
返回
String
- 邮件发件人的电子邮件地址。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
get Header(name)
给定标头名称,获取 RFC 2822 标头的值。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox. const message = thread.getMessages()[0]; // Get the first message. Logger.log( message.getHeader('Message-ID')); // Logs the Message-ID RFC 2822 header.
参数
名称 | 类型 | 说明 |
---|---|---|
name | String | RFC 标头的名称,不带与值分隔的冒号。 |
返回
String
- 标头的值,如果消息中不存在该标头,则为空字符串。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
get Id()
获取此消息的 ID。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message const id = message.getId(); const messageById = GmailApp.getMessageById(id); Logger.log( message.getSubject() === messageById.getMessage()); // Always logs true
返回
String
- 邮件 ID。
get Plain Body()
获取此邮件正文的内容,不带 HTML 格式。这比 get
更复杂,并且需要更长的时间。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(message.getPlainBody()); // Log contents of the body
返回
String
- 此邮件的纯文本正文。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
get Raw Content()
获取此邮件的原始内容。这相当于 Gmail 界面中的“显示原始邮件”。
返回
String
- 此邮件的原始内容。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
get Reply To()
获取此邮件的回复地址(通常是发件人)。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(message.getReplyTo()); // Logs reply-to address
返回
String
- 回复电子邮件地址。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
get Subject()
获取此邮件的主题。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(message.getSubject()); // Log subject line
返回
String
- 该邮件的主题。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
get Thread()
获取包含此消息的会话。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log( message.getThread().getFirstMessageSubject() === thread.getFirstMessageSubject(), ); // Always logs true
返回
Gmail
- 包含此邮件的 GmailThread。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
get To()
获取此邮件的逗号分隔的收件人。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(message.getTo()); // Log the recipient of message
返回
String
- 此邮件的收件人(以英文逗号分隔)。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
is Draft()
获取此邮件是否为草稿。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(`is draft? ${message.isDraft()}`);
返回
Boolean
- 此邮件是否为草稿。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
is In Chats()
获取此消息是否为聊天消息。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(`is a chat? ${message.isInChats()}`);
返回
Boolean
- 此消息是否为聊天消息。
is In Inbox()
获取此邮件是否在收件箱中。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(`is in inbox? ${message.isInInbox()}`);
返回
Boolean
- 此邮件是否在收件箱中。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
is In Priority Inbox()
如果此邮件位于“重要收件箱”中,则返回 true
;否则,返回 false
。
const thread = GmailApp.getPriorityInboxThreads( 0, 1)[0]; // Get first thread in priority inbox const messages = thread.getMessages(); for (let i = 0; i < messages.length; i++) { // At least one of the messages is in priority inbox Logger.log(`is in priority inbox? ${messages[i].isInPriorityInbox()}`); }
返回
Boolean
- 此邮件是否位于“优先收件箱”中。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
is In Trash()
获取此邮件是否位于回收站中。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(`is in the trash? ${message.isInTrash()}`);
返回
Boolean
- 此邮件是否位于回收站中。
is Starred()
获取此邮件是否已加星标。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(`is starred? ${message.isStarred()}`);
返回
Boolean
- 此邮件是否已加星标。
is Unread()
获取此消息是否未读。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message Logger.log(`is unread? ${message.isUnread()}`);
返回
Boolean
- 此邮件的未读状态。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
mark Read()
将邮件标记为已读。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message message.markRead(); // Mark as read
返回
Gmail
- 此 GmailMessage,适用于串联。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
mark Unread()
将邮件标记为未读。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message message.markUnread(); // Mark as unread
返回
Gmail
- 此 GmailMessage,适用于串联。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
move To Trash()
将邮件移至回收站。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message message.moveToTrash(); // Move message to trash
返回
Gmail
- 此 GmailMessage,适用于串联。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
refresh()
从 Gmail 重新加载此邮件及其关联状态(如果标签、已读状态等已更改,此操作非常有用)。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message // .. Do bunch of stuff here message.refresh(); // Make sure it's up to date // Do more stuff to message
返回
Gmail
- 此消息用于链式调用。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
reply(body)
使用“回复”地址回复此邮件的发件人。电子邮件(包括标头)的大小超出了配额限制。
// Respond to author of message with acknowledgment const firstThread = GmailApp.getInboxThreads(0, 1)[0]; const message = firstThread.getMessages()[0]; message.reply('Got your message');
参数
名称 | 类型 | 说明 |
---|---|---|
body | String | 电子邮件的正文。 |
返回
Gmail
- 此消息适用于串联。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
reply(body, options)
使用回复地址(可选参数)回复此邮件的发件人。
电子邮件可以同时包含纯文本正文和 HTML 正文。电子邮件(包括标头)的大小超出了配额限制。
// Respond with HTML body text const firstThread = GmailApp.getInboxThreads(0, 1)[0]; const message = firstThread.getMessages()[0]; message.reply('incapable of HTML', { htmlBody: '<b>some HTML body text</b>', noReply: true, });
参数
名称 | 类型 | 说明 |
---|---|---|
body | String | 电子邮件的正文。 |
options | Object | 用于指定高级参数的 JavaScript 对象,如下所列。 |
高级参数
名称 | 类型 | 说明 |
---|---|---|
attachments | Blob | 要随电子邮件发送的文件数组 |
bcc | String | 以英文逗号分隔的密件抄送电子邮件地址列表 |
cc | String | 以英文逗号分隔的抄送电子邮件地址列表 |
from | String | 电子邮件的发件人地址,必须是 Gmail 返回的值之一 |
html | String | 设置后,能够呈现 HTML 的设备会使用它,而不是必需的 body 参数;如果您为电子邮件内嵌了图片,则可以在 HTML 正文中添加可选的 inline 字段 |
inline | Object | 一个 JavaScript 对象,包含从图片键 (String ) 到图片数据 (Blob ) 的映射;这假定使用了 html 参数,并且包含采用 <img src="cid:imageKey" /> 格式的这些图片的引用 |
name | String | 电子邮件发件人的姓名(默认:用户的姓名) |
no | Boolean | true (如果应使用通用的无回复电子邮件地址发送电子邮件,以阻止收件人回复电子邮件;此选项仅适用于 Google Workspace 账号,不适用于 Gmail 用户) |
reply | String | 要用作默认回复地址的电子邮件地址(默认:用户的电子邮件地址) |
subject | String | 电子邮件的新主题行,最多 250 个字符。 |
返回
Gmail
- 此消息适用于串联。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
reply All(body)
使用“回复”地址回复发件人,并抄送此邮件的所有收件人。电子邮件(包括标头)的大小超出了配额限制。
// Respond to all recipients (except bcc'd) of last email in thread with // acknowledgment const firstThread = GmailApp.getInboxThreads(0, 1)[0]; const message = firstThread.getMessages()[0]; message.replyAll('Got your message');
参数
名称 | 类型 | 说明 |
---|---|---|
body | String | 电子邮件的正文。 |
返回
Gmail
- 此消息适用于串联。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
reply All(body, options)
使用回复地址和所有收件人(可选参数)回复此邮件的发件人。
电子邮件可以同时包含纯文本正文和 HTML 正文。电子邮件(包括标头)的大小超出了配额限制。
// Respond with HTML body text const firstThread = GmailApp.getInboxThreads(0, 1)[0]; const message = firstThread.getMessages()[0]; message.replyAll('incapable of HTML', { htmlBody: '<b>some HTML body text</b>', noReply: true, });
参数
名称 | 类型 | 说明 |
---|---|---|
body | String | 电子邮件的正文。 |
options | Object | 用于指定高级参数的 JavaScript 对象,如下所列。 |
高级参数
名称 | 类型 | 说明 |
---|---|---|
attachments | Blob | 要随电子邮件发送的文件数组 |
bcc | String | 以英文逗号分隔的密件抄送电子邮件地址列表 |
cc | String | 以英文逗号分隔的抄送电子邮件地址列表 |
from | String | 电子邮件的发件人地址,必须是 Gmail 返回的值之一 |
html | String | 设置后,能够呈现 HTML 的设备会使用它,而不是必需的 body 参数;如果您为电子邮件内嵌了图片,则可以在 HTML 正文中添加可选的 inline 字段 |
inline | Object | 一个 JavaScript 对象,包含从图片键 (String ) 到图片数据 (Blob ) 的映射;这假定使用了 html 参数,并且包含采用 <img src="cid:imageKey" /> 格式的这些图片的引用 |
name | String | 电子邮件发件人的姓名(默认:用户的姓名) |
no | Boolean | true (如果应使用通用的无回复电子邮件地址发送电子邮件,以阻止收件人回复电子邮件;此选项仅适用于 Google Workspace 账号,不适用于 Gmail 用户) |
reply | String | 要用作默认回复地址的电子邮件地址(默认:用户的电子邮件地址) |
subject | String | 电子邮件的新主题行,最多 250 个字符。 |
返回
Gmail
- 此消息适用于串联。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
star()
为邮件加星标。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message message.star(); // Star the message
返回
Gmail
- 此 GmailMessage,适用于串联。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/
另请参阅
unstar()
为消息移除星标。
const thread = GmailApp.getInboxThreads(0, 1)[0]; // Get first thread in inbox const message = thread.getMessages()[0]; // Get first message message.unstar(); // Unstar the message
返回
Gmail
- 此 GmailMessage,适用于串联。
授权
使用此方法的脚本需要具有以下一个或多个作用域或相关 REST API 中的适当作用域的授权:
-
https://mail.google.com/