Skip to content

Instantly share code, notes, and snippets.

@pankajpanday
Created December 19, 2013 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pankajpanday/8038522 to your computer and use it in GitHub Desktop.
Save pankajpanday/8038522 to your computer and use it in GitHub Desktop.
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();
@pankajpanday
Copy link
Author

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();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment