Gmail でメールを送信する
Sends emails via Gmail with subject, body, CC, BCC, and HTML support.
/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 send --to "$ARGUMENTS" --subject "$SUBJECT" --body "$BODY" ${CC:+--cc "$CC"} ${BCC:+--bcc "$BCC"} ${HTML:+--html}
/shiiman-google:gmail-send user@example.com --subject "件名" --body "本文です。"
/shiiman-google:gmail-send user@example.com --subject "報告" --body "内容" --cc "cc1@example.com,cc2@example.com"