What problem does it solve? When the Himalaya CLI is not installed, you still need a way to send emails programmatically. This Skill uses Python's built-in smtplib to send plain text, HTML, and attachment-bearing emails through Gmail SMTP on any platform without extra dependencies. ## Core Features & Use Cases - Plain Text & Attachment Sending: Send emails with file attachments using MIMEMultipart and base64 encoding via smtp.gmail.com on port 587 with STARTTLS. - Inline HTML Images: Embed charts or images directly in the email body using MIMEImage with Content-ID references and multipart/related structure. - Gmail App Password Flow: Guides app password generation, credential lookup from memory or local scripts, and troubleshooting of common SMTP errors like 535 auth failures. - Use Case: Generate a chart image, write an HTML report referencing it via cid:, and email the rich report to a recipient โ all in one scripted workflow. ## Quick Start Send an email with the generated report.html file attached to recipient@gmail.com using my Gmail account via Python smtplib.