> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paubox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Paubox Perl SDK

> Send HIPAA-compliant email and submit Paubox Forms from Perl applications using the official Paubox Perl SDK.

The Paubox Perl SDK is the official Perl client library for the [Paubox Email API](/email-api) and [Paubox Forms](/forms). Install it from CPAN and send encrypted, HIPAA-compliant email with a few lines of Perl.

```bash theme={null}
cpanm Paubox_Email_SDK
```

## What you can do

* Send encrypted, HIPAA-compliant email to one or more recipients
* Add CC, BCC, attachments, and HTML or plain-text content
* Track delivery status and engagement per recipient
* Retrieve Paubox Form schemas and submit form responses with file attachments

## Requirements

* Perl
* [cpanminus](https://metacpan.org/pod/App::cpanminus) (`cpanm`)
* Dependencies installed automatically: `JSON`, `Config::General`, `REST::Client`, `TryCatch`, `String::Util`, `MIME::Base64`

## Get started

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/perl-sdk/quickstart">
    Install, configure credentials, and send your first email in minutes.
  </Card>

  <Card title="Authentication" icon="key" href="/perl-sdk/authentication">
    Set up your API key and username via a config.cfg file.
  </Card>

  <Card title="Email client" icon="envelope" href="/perl-sdk/email-client">
    Full reference for sending email and checking delivery status.
  </Card>

  <Card title="Forms client" icon="file-lines" href="/perl-sdk/forms-client">
    Retrieve form schemas and submit responses.
  </Card>
</CardGroup>
