OrderInvoiceInput Input
Description
Input fields for sending an invoice email to a buyer. Used when sending invoices via email with optional CC to the sender.
Declaration
input OrderInvoiceInput {
recipient: String!
message: String!
subject: String!
ccMe: Boolean!
}
Fields
| Name | Type | Description |
|---|---|---|
recipient | String! | Email address of the invoice recipient. |
message | String! | Email message body to include with the invoice. |
subject | String! | Email subject line for the invoice email. |
ccMe | Boolean! | Whether to send a copy of the email to the current user. |