Skip to content

letter-business

The letter-business template produces a properly formatted business letter with sender and recipient address blocks, subject line, body paragraphs, and closing. Follows standard business letter conventions.

<glyph-editor
api-key="gk_your_key"
template="letter-business"
data='...'
></glyph-editor>
FieldTypeDescription
letter.datestringLetter date
letter.senderNamestringSender full name
letter.senderTitlestringSender job title
letter.senderCompanystringSender company name
letter.senderAddressstringSender address (supports \n for line breaks)
letter.recipientNamestringRecipient full name
letter.recipientTitlestringRecipient job title
letter.recipientCompanystringRecipient company name
letter.recipientAddressstringRecipient address (supports \n for line breaks)
letter.subjectstringLetter subject line
letter.salutationstringOpening greeting (e.g. “Dear Ms. Chen,“)
letter.bodystring[]Array of body paragraphs
letter.closingstringClosing phrase (e.g. “Sincerely,“)
FieldTypeDescription
letter.signaturestringSignature image URL
Terminal window
curl -X POST https://api.glyph.you/v1/create \
-H "Authorization: Bearer gk_your_key" \
-H "Content-Type: application/json" \
-d '{
"template": "letter-business",
"data": {
"letter": {
"date": "January 15, 2024",
"senderName": "Michael Torres",
"senderTitle": "Vice President, Business Development",
"senderCompany": "Cascade Partners LLC",
"senderAddress": "800 Fifth Avenue, Suite 3200\nSeattle, WA 98104",
"recipientName": "Sarah Chen",
"recipientTitle": "Chief Technology Officer",
"recipientCompany": "Horizon Dynamics Inc.",
"recipientAddress": "1200 Market Street\nSan Francisco, CA 94103",
"subject": "Strategic Partnership Proposal - Q1 2024",
"salutation": "Dear Ms. Chen,",
"body": [
"I am writing to express our strong interest in establishing a strategic partnership between Cascade Partners and Horizon Dynamics.",
"Cascade Partners brings over fifteen years of expertise in cloud infrastructure optimization, serving more than 200 Fortune 500 clients.",
"I would welcome the opportunity to discuss this proposal in greater detail.",
"Please let me know if you are available for a meeting during the week of February 5th."
],
"closing": "Sincerely,"
}
}
}'