Hello, I am running into an issue where the customer email is not sending after editing an order using graphql orderEditCommit. I’m doing exactly what seems to have worked for others as described in this thread https://community.shopify.com/c/shopify-apis-and-sdks/notifying-customer-when-their-order-is-edited/…. The order is editing successfully with no errors except for the email is not being sent. Here’s the API version were on and the applicable API scopes being used:
API Version: 2023-01
Access Scopes:
“read_customers”
“read_orders”
“read_all_orders”
“read_products”
“read_fulfillments”
“read_shipping”
“read_price_rules”
“read_discounts”
“read_script_tags”
“write_customers”
“write_price_rules”
“write_discounts”
“write_script_tags”
“write_orders”
“write_order_edits”
Code:
mutation orderEditCommit($id: ID!) {
orderEditCommit(id: $id, notifyCustomer: true) {
order {
id
}
userErrors {
field
message
}
}
}