Reminders for Quotes?

I am curious if there is a way to send reminder e-mails for quotes. The app works perfectly for invoices, but it would be nice to have reminders for quotes work the same way.

If you’re self-hosting you could remove the invoiceType filter here:

https://github.com/invoiceninja/invoiceninja/blob/master/app/Ninja/Repositories/InvoiceRepository.php#L1150

Could you expand on this please?

Do you mean the line that says:

Account $account, $filterEnabled = true)

and change that to false? Or do you mean the commented out lines above it?

    /**
     * @param Account $account
     *
     * @return mixed
     */

Thanks

The Invoice::invoiceType(INVOICE_TYPE_STANDARD) needs to be changed.

Note: there may be other changes required, I haven’t tested this…

Gotcha, I’ll keep that in mind. Thanks!