User Guide of Magento 2 Invoice Email Extension
General Configurations
At the backend, go to FME EXTENSIONS > Configurations. Here you can find the extension configurations.
- Enabled: Option to Enable/Disable the module
- Share All Order Emails: Select ‘Yes’ or ‘No’ to share all order emails. If set to ‘No’, only invoice emails will be shared
- Fields Heading: Enter a heading for the invoice email field
- Show on Default Customer Registration Page: Select ‘Yes’ or ‘No’ to show invoice emails information on the default customer registration page
- Show Breadcrumbs: Select ‘Yes’ or ‘No’ to Show/Hide breadcrumbs
How Users Can Add Invoice Emails?
At the front-end, users can add Invoice Emails on the Registration page.
User Account Page (Accounts Dashboard)
Note: Registered users can edit previously submitted Invoice emails here as well.
Invoice Email on Checkout Page
GraphQL APIs
-
Register Customer Invoice Email
Mutation
mutation {
createCustomer(
input: {
firstname: "Kareem"
lastname: "Bux"
email: "kareembux@gmail.com"
password: "Kareem123"
invoice_email: "kareembuxmahesar@gmail.com"
}
) {
customer {
id
firstname
lastname
email
invoice_email
}
}
}
-
Get Customer Invoice Email
Query
{ customer
{
email
invoice_email
}
}
-
Update Customer Invoice Email
Mutation
mutation {
updateCustomer(
input: {
firstname: "KareemBux",
invoice_email: "kareembuxmahesar456@gmail.com"
}
) {
customer {
firstname
invoice_email
}
}
}
-
Update Quote Invoice Email
Query
mutation {
addInvoiceEmail(input: {
cart_id: "c0rkjDJ4OvEWdvnnv8zRXp1DrVtiQOSb",
invoice_email: "kareembuxtest@gmail.com"
}) {
success
message
}
}