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

enable.png

How Users Can Add Invoice Emails?

At the front-end, users can add Invoice Emails on the Registration page.

invoice email.png

User Account Page (Accounts Dashboard)

user account.png

Note: Registered users can edit previously submitted Invoice emails here as well.

Invoice Email on Checkout Page

checkout.jpg

GraphQL APIs

  1. 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
   }
 }
}
  1. Get Customer Invoice Email

Query

{ customer
 {
   email
   invoice_email
 }
}
  1. Update Customer Invoice Email

Mutation

mutation {
 updateCustomer(
   input: {
     firstname: "KareemBux",
     invoice_email: "kareembuxmahesar456@gmail.com"
   }
 ) {
   customer {
     firstname
     invoice_email
   }
 }
}
  1. Update Quote Invoice Email

Query

mutation {
 addInvoiceEmail(input: {
   cart_id: "c0rkjDJ4OvEWdvnnv8zRXp1DrVtiQOSb",
   invoice_email: "kareembuxtest@gmail.com"
 }) {
   success
   message
 }
}
Compatible with 2.1.x, 2.2.x, 2.3.x, 2.4.1, 2.4.2, 2.4.3, 2.4.4, 2.4.5, 2.4.6, 2.4.7
$79.99 Community
$279.99 Enterprise