Skip to main content

Email QR Code

Create a QR code that opens an email with pre-filled recipient, subject, and body.

Type Identifier

type: "email"

Fields

FieldTypeRequiredDescription
typestringRequiredMust be "email"
emailstringRequiredRecipient email address
subjectstringOptionalEmail subject line
bodystringOptionalEmail body text

Use Cases

  • Customer support — Easy way to contact support
  • Feedback collection — Pre-filled feedback emails
  • Event RSVPs — Quick RSVP via email
  • Sales inquiries — Connect with sales team

Content Schema

{
"type": "email",
"email": "hello@example.com",
"subject": "Hello from QR code",
"body": "I scanned your QR code!"
}

Example Request

curl -X POST "https://integration-api.qr-build.com/qr-codes" \
-H "X-API-Key: qrb_live_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Contact Support",
"type": "email",
"content": {
"type": "email",
"email": "support@example.com",
"subject": "Support Request",
"body": "Hello, I need help with..."
}
}'