Install
openclaw skills install @zkeviny/smtp-sender-secureSend emails securely without exposing SMTP passwords, powered by MGC Blackbox.
openclaw skills install @zkeviny/smtp-sender-secureSend emails safely without exposing SMTP passwords. Credentials stay encrypted inside your local MGC Blackbox.
Most email‑sending tools require you to hardcode SMTP passwords or store them in plaintext.
This skill uses MGC Blackbox, a local encrypted vault:
Your AI can send emails — but never sees your password.
pip install mgc-blackbox
mgc
Create a JSON file:
{
"address": "your@email.com",
"password": "auth_code",
"smtp_server": "smtp.email.com",
"smtp_port": 587
}
Store it:
mgc_save info_type=config info_owner=your_email < config.json
Note:
info_typeandinfo_ownerare identifiers you choose when saving credentials.
send_emailfrom mcp import MCPClient
client = MCPClient("http://localhost:57219")
client.call_tool("send_email", {
"to": "to@example.com",
"subject": "Hello",
"body": "This is a secure email.",
"info_type": "config",
"info_owner": "your_email"
})
If you need attachments, HTML emails, templates, or automation workflows, you can extend this skill using MGC’s secure local execution capabilities.
MirginCipher
MIT License (see GitHub repository)