Gmail で下書きを作成する
Creates Gmail drafts with subject, body, CC, BCC, and HTML formatting options.
/plugin marketplace add shiiman/claude-code-plugins/plugin install shiiman-google@shiiman-claude-code-pluginsGmail で下書きを作成します。
$ARGUMENTS (必須): 宛先メールアドレス--subject <text> (必須): 件名--body <text> (必須): 本文--cc <emails>: CC(カンマ区切り)--bcc <emails>: BCC(カンマ区切り)--html: HTMLメールとして送信python plugins/shiiman-google/scripts/google_gmail.py draft --to "$ARGUMENTS" --subject "$SUBJECT" --body "$BODY" ${CC:+--cc "$CC"} ${BCC:+--bcc "$BCC"} ${HTML:+--html}
/shiiman-google:gmail-draft user@example.com --subject "件名" --body "本文です。"
/shiiman-google:gmail-draft user@example.com --subject "報告" --body "内容" --cc "cc1@example.com"