Skip to content

Instantly share code, notes, and snippets.

@mbeale
Created April 5, 2013 16:37
Show Gist options
  • Save mbeale/5320711 to your computer and use it in GitHub Desktop.
Save mbeale/5320711 to your computer and use it in GitHub Desktop.
Recurly Stream PDF invoice with PHP
try {
$pdf = Recurly_Invoice::getInvoicePdf('2149', 'en-US');
} catch (Recurly_NotFoundError $e) {
print "Invoice not found.\n";
}
header('Content-type: application/pdf');
header('Accept-Language: en-US');
header('Content-Disposition: attachment; filename="downloaded.pdf"');
print $pdf;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment