Skip to content

Instantly share code, notes, and snippets.

@chered
Last active December 23, 2015 21:09
Show Gist options
  • Save chered/6694804 to your computer and use it in GitHub Desktop.
Save chered/6694804 to your computer and use it in GitHub Desktop.
Commerce Invoice Receipt Rule Export
{ "rules_send_an_invoice_receipt_on_email" : {
"LABEL" : "Send an invoice receipt on email",
"PLUGIN" : "reaction rule",
"REQUIRES" : [ "rules", "commerce_invoice_receipt", "commerce_checkout" ],
"ON" : [ "commerce_checkout_complete" ],
"DO" : [
{ "commerce_invoice_receipt_action_mail" : {
"commerce_order" : [ "commerce-order" ],
"to" : "[commerce-order:owner] \u003C[commerce-order:mail]\u003E",
"subject" : "[site:name]: Order #[commerce-order:order-id]"
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment