Atomia Billing Server

Invoicing emails

11 views 0

Configuration description

Namespace: Atomia.Billing.Plugins.GenericWorkflowPlugin.EventHandlers.InvoiceEventHandlers

It is possible to customize the invoicing emails that are sent by changing the following:

  1. Invoice email template
  2. Credit invoice email template
  3. Proforma invoice email template
  4. Receipt email template

Example configuration:

            {
              "InvoiceTemplateNamePrefix":"InvoiceEmailTemplate",
              "CreditInvoiceTemplateNamePrefix":"CreditInvoiceEmailTemplate",
              "ProformaInvoiceTemplateNamePrefix":"ProformaEmailTemplate",
              "ReceiptTemplateNamePrefix":"ReceiptEmailTemplate",
              "ApplyToSubresellers":true
            }
  • InvoiceTemplateNamePrefix Email template prefix for regular invoices. For example if this prefix is “InvoiceEmailTemplate”, then the system will look for “InvoiceEmailTemplateSubject” and “InvoiceEmailTemplateBody”.
  • CreditInvoiceTemplateNamePrefix Email template prefix for credit invoices. For example if this prefix is “CreditInvoiceEmailTemplate”, then the system will look for “CreditInvoiceEmailTemplateSubject” and “CreditInvoiceEmailTemplateBody”.
  • ProformaInvoiceTemplateNamePrefix Email template prefix for proforma invoices. For example if this prefix is “ProformaInvoiceEmailTemplate”, then the system will look for “ProformaInvoiceEmailTemplateSubject” and “ProformaInvoiceEmailTemplateBody”.
  • ReceiptTemplateNamePrefix Email template prefix for invoices receipts. For example if this prefix is “ReceiptEmailTemplate”, then the system will look for “ReceiptEmailTemplateSubject” and “ReceiptEmailTemplateBody”.
  • ApplyToSubresellers If set to true and this configuration is reseller specific then it also applies reseller’s sub-resellers.

Was this helpful?