Overview
Readysell can automatically send an email batch with invoices at the end of the day. This is advantageous in situations where there may be corrections to invoices that occur throughout the day. By scheduling invoices to be sent in a batch at the end of the day, customers will only receive their finalised invoices after any corrections are made.
...
- In the navigation panel, click Administration> Advanced> Tasks
- Click on the Generate And Send Email Batches task
- Ensure the task is Enabled and that the schedule is set according to the standard task schedule
Go to the Parameters tab and fill in the following:
Parameter NameSet ToEnableGenerateAndSendSaleInvoiceEmailBatch True LastRunGenerateAndSendSaleInvoiceEmailBatch yyyy-mm-ddT00:00:00 (Apply the date of the day the task is used) GenerateAndSendSaleInvoiceEmailBatchCriteria Currently the default value for this is :((TransactionType.Code != 'SALMCI' && TransactionType.Code != 'SRVINV')
If you dont want to email Sales Invoices with a value less than Zero and Sales Invoices where the Balance = 0 then paste the below parameter into the value.
((TransactionType.Code != 'SALMCI' && TransactionType.Code != 'SRVINV') || ValueIncTaxInvoiced < 0) || OutstandingBalance != 0
Tip If you do not wish to receive a copy via BCC , simply uncheck the BCC setting in "Users" for user name "service"
Expand title Show me - Save your changes
- In the navigation panel, click Administration> Email Batch Defaults
- Click on the Invoices default
- Enter a Default From Name, Default From Address and Default Subject
- (Optionally) Set up a template (see Template Replacement Variables) with the introduction and/or signature of your choosing. If you do not do this, your default template will be used.
- Save your changes
- Restart the Readysell service
...