Skip to main content
Glama

send_outreach

Send outreach emails to recruiters or referrers for job applications using your configured email address.

Instructions

Send an outreach email to a recruiter or referrer for a job application. The email will be sent from your configured email.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
applicationIdYesThe job application ID
contactIdYesThe contact ID (from get_application_recruiters or get_application_referrers)
subjectYesEmail subject line
bodyYesEmail body content

Implementation Reference

  • The handler implementation for the `send_outreach` tool, which calls the `client.createOutreach` method.
    server.tool(
      'send_outreach',
      'Send an outreach email to a recruiter or referrer for a job application. The email will be sent from your configured email.',
      {
        applicationId: z.string().describe('The job application ID'),
        contactId: z.string().describe('The contact ID (from get_application_recruiters or get_application_referrers)'),
        subject: z.string().describe('Email subject line'),
        body: z.string().describe('Email body content'),
      },
      async (args) => {
        const result = await client.createOutreach(args.applicationId, args.contactId, args.subject, args.body);
        return {
          content: [{
            type: 'text' as const,
            text: JSON.stringify({
              message: 'Outreach email sent successfully',
              outreach: {
                id: result.id,
                contactName: result.contactName,
                contactEmail: result.contactEmail,
                subject: result.subject,
                status: result.status,
              },
            }, null, 2),
          }],
        };
      }
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/6figr-com/job-gpt-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server