Skip to content

Instantly share code, notes, and snippets.

View nikhilwason's full-sized avatar

Nikhil Wason nikhilwason

  • Vancouver
  • 23:15 (UTC -07:00)
View GitHub Profile
@drewjoh
drewjoh / example.php
Last active March 21, 2025 00:11 — forked from mloberg/example.php
A Simple Postmark PHP Class with Attachments
<?php
require("postmark.php");
$postmark = new Postmark("your-api-key","from-email","optional-reply-to-address");
$result = $postmark->to("[email protected]")
->subject("Email Subject")
->plain_message("This is a plain text message.")
->attachment('File.pdf', base64_encode(file_get_contents('sample.pdf')), 'application/pdf')