Created
December 19, 2013 12:39
-
-
Save pankajpanday/8038522 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
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();