pinme-email
This skill provides documentation and code templates for integrating email functionality into PinMe Worker TypeScript projects using the PinMe platform API.
Is pinme-email safe to install?
Review the source first: our audit of pinme-email's source files found 0 shell commands, 0 external URLs, no file writes (high risk). Every command and URL listed appears verbatim in the skill's source. The skill instructs the agent to make network requests to the PinMe API using the project's API key.
How we audit skills: our security review methodology.
Who is this skill for?
Developers building PinMe Workers who need to implement email sending features.
What can you do with it?
- Generating TypeScript code for sending emails via the PinMe API
- Implementing error handling for PinMe platform API requests
- Configuring environment variables for PinMe Worker authentication
How good is this skill?
Quality score: 5/10. The skill provides clear, copy-pasteable TypeScript examples and defines the API contract effectively.
What does the skill file contain?
# PinMe Worker Email API Integration
Guides how to call PinMe platform's email sending API in a PinMe Worker (TypeScript).
## Environment Variables
The following environment variables are automatically injected when the Worker is created — no manual configuration needed:
```typescript
// backend/src/worker.ts
export interface Env {
DB: D1Database;
API_KEY: string; // Project API Key — used for send_email authentication
BASE_URL?: string; // Optional override for PinMe API base URL, defaults to https://pinme.cloud
}
```
> `API_KEY` is the sole credential for the Worker to cal...Frequently asked questions
How does the worker authenticate with the PinMe email API?
The worker uses the API_KEY environment variable, which is passed in the X-API-Key header.
Can I use a custom base URL for the API?
Yes, the worker supports an optional BASE_URL environment variable to override the default https://pinme.cloud endpoint.
What is the sender address for emails sent through this API?
The system automatically sets the sender address to {project_name}@pinme.cloud.
Related skills
cold-email
63.5KSales development representatives, founders, and professionals conducting B2B cold outreach
The cold-email skill generates B2B cold outreach emails and follow-up sequences. It prioritizes human-sounding, concise copy that focuses on the recipient's perspective rather than vendor-style pitches. The skill incorporates product marketing context from local files to tailor messaging and utilizes specific frameworks for subject lines, body content, and calls to action.
recipe-email-drive-link
16.7KUsers who need to automate file sharing and email communication within the Google Workspace ecosystem
This skill automates the process of locating a Google Drive file, granting reader permissions to a specific email address, and sending the file link via Gmail.
recipe-label-and-archive-emails
16.6KUsers who manage Gmail accounts via the command line and require automated inbox organization
This skill automates Gmail inbox management by searching for specific messages, applying labels, and removing the inbox label to archive them.
recipe-forward-labeled-emails
16.2KUsers who manage Gmail workflows via the command line and require automated email forwarding based on labels
This skill automates the process of identifying Gmail messages with a specific label and forwarding them to a designated email address.