Skip to content

Instantly share code, notes, and snippets.

Use this to send pdf
$result = $postmark->to("send-to-email")
->subject("Test Mail")
->plain_message("This is a plain text message.")
->attachment('sample.pdf', base64_encode(file_get_contents('sample.pdf')), 'application/pdf')
->send();