pinme-email

This skill provides documentation and code templates for integrating email functionality into PinMe Worker TypeScript projects using the PinMe platform API.

382
Installs
3
Use cases
5/10
Quality

Is pinme-email safe to install?

Review the source first

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?

SKILL.md
# 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.

Data sourced from glitternetwork/pinme on GitHub. Install counts from skills.sh. The summary and security audit are derived from the skill's source files: every command and URL listed appears verbatim in the source.

Related skills