Class UpdateDraftBodyAction
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
업데이트초안본문조치
이메일 초안 본문을 업데이트합니다.
자세한 문서
addUpdateContent(content, contentType)
setUpdateType(updateType)
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-26(UTC)
[null,null,["최종 업데이트: 2025-07-26(UTC)"],[[["\u003cp\u003e\u003ccode\u003eUpdateDraftBodyAction\u003c/code\u003e updates the body of an email draft.\u003c/p\u003e\n"],["\u003cp\u003eIt provides methods to add content (\u003ccode\u003eaddUpdateContent\u003c/code\u003e) and set the update type (\u003ccode\u003esetUpdateType\u003c/code\u003e).\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eaddUpdateContent\u003c/code\u003e inserts specified content, determined by \u003ccode\u003eContentType\u003c/code\u003e, into the email draft.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003esetUpdateType\u003c/code\u003e defines how the content is inserted, such as at the beginning, end, or cursor position, using \u003ccode\u003eUpdateDraftBodyType\u003c/code\u003e.\u003c/p\u003e\n"]]],["`UpdateDraftBodyAction` modifies an email draft's body. It provides two key methods: `addUpdateContent` and `setUpdateType`. `addUpdateContent` inserts specified content, defined by a string and content type, into the draft. `setUpdateType` determines where the content is inserted, such as the start, end, or cursor position, using `UpdateDraftBodyType`. Both methods return the `UpdateDraftBodyAction` object, enabling method chaining.\n"],null,["# Class UpdateDraftBodyAction\n\nUpdateDraftBodyAction\n\nUpdates the email draft body. \n\n### Methods\n\n| Method | Return type | Brief description |\n|---------------------------------------------------------------------------------|----------------------------|-------------------------------------------------------------------------------------------------------------------------------------|\n| [addUpdateContent(content, contentType)](#addUpdateContent(String,ContentType)) | [UpdateDraftBodyAction](#) | Adds the specified content to the draft body. |\n| [setUpdateType(updateType)](#setUpdateType(UpdateDraftBodyType)) | [UpdateDraftBodyAction](#) | Sets the [UpdateDraftBodyType](/apps-script/reference/card-service/update-draft-body-type) of this update action on the draft body. |\n\nDetailed documentation\n----------------------\n\n### `add``Update``Content(content, contentType)`\n\nAdds the specified content to the draft body. The type of the `content` is specified by\n[ContentType](/apps-script/reference/card-service/content-type).\n\n#### Parameters\n\n| Name | Type | Description |\n|-----------------|-----------------------------------------------------------------|-------------------------------------------------|\n| `content` | `String` | The content to insert to the email draft. |\n| `content``Type` | [ContentType](/apps-script/reference/card-service/content-type) | The content type of the content to be inserted. |\n\n#### Return\n\n\n[UpdateDraftBodyAction](#) --- This object, for chaining.\n\n*** ** * ** ***\n\n### `set``Update``Type(updateType)`\n\nSets the [UpdateDraftBodyType](/apps-script/reference/card-service/update-draft-body-type) of this update action on the draft body. For example,\ninserting content at the start, end, or cursor position of the draft body.\n\n#### Parameters\n\n| Name | Type | Description |\n|----------------|-----------------------------------------------------------------------------------|-------------------------------------------------------|\n| `update``Type` | [UpdateDraftBodyType](/apps-script/reference/card-service/update-draft-body-type) | The type of update to be performed on an email draft. |\n\n#### Return\n\n\n[UpdateDraftBodyAction](#) --- This object, for chaining."]]