Skip to content

Send a draft to the recipients in the To, CC, and Bcc headers.

Usage

gm_send_draft(draft, user_id = "me")

Arguments

draft

the draft to send

user_id

gmail user_id to access, special value of 'me' indicates the authenticated user.

See also

Other draft: gm_delete_draft(), gm_drafts(), gm_draft()

Examples

if (FALSE) {
draft <- gm_create_draft(gm_mime(
  From = "you@me.com", To = "any@one.com",
  Subject = "hello", "how are you doing?"
))
gm_send_draft(draft)
}