Skip to content

Instantly share code, notes, and snippets.

@kevanmoothien
Created February 17, 2018 11:57
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 kevanmoothien/808b08dcf742033aec14074ded21ca71 to your computer and use it in GitHub Desktop.
Save kevanmoothien/808b08dcf742033aec14074ded21ca71 to your computer and use it in GitHub Desktop.
A visualforce template for rendering pdf from Salesforce
<apex:page applyHtmlTag="false"
showHeader="false"
renderAs="pdf">
<html>
<head>
<style>
@page {
size: A4
}
</style>
</head>
<body>
Hello World
</body>
</html>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment