Advertisement
MrJoshMiller

Send customer profile an email using custom field

Jul 12th, 2013
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.78 KB | None | 0 0
  1. { "rules_send_customer_profile_an_email_using_custom_field" : {
  2.     "LABEL" : "Send customer profile an email using custom field",
  3.     "PLUGIN" : "reaction rule",
  4.     "REQUIRES" : [ "rules", "entity" ],
  5.     "ON" : [ "commerce_order_insert" ],
  6.     "IF" : [
  7.       { "entity_has_field" : { "entity" : [ "commerce-order" ], "field" : "commerce_customer_billing" } },
  8.       { "entity_has_field" : {
  9.           "entity" : [ "commerce-order:commerce-customer-billing" ],
  10.           "field" : "field_email"
  11.         }
  12.       }
  13.     ],
  14.     "DO" : [
  15.       { "mail" : {
  16.           "to" : [ "commerce-order:commerce-customer-billing:field-email" ],
  17.           "subject" : "Test!",
  18.           "message" : "Test",
  19.           "language" : [ "commerce-order:state" ]
  20.         }
  21.       }
  22.     ]
  23.   }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement