PluginProbe
Quotes Addon for GetPaid / 2.0.2
Quotes Addon for GetPaid v2.0.2
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 2.0.0 2.0.1 2.0.10 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9
invoicing-quotes / includes / general-functions.php

general-functions.php in Quotes Addon for GetPaid 2.0.2, at includes/general-functions.php

21 lines 406 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Function to send customer quote email notification to customer
5 *
6 * @since 1.0.0
7 * @param int $quote_id ID of post/quote
8 * @return bool $sent email sent or not
9 */
10 function wpinv_user_quote_notification( $quote_id ) {
11
12 $quote = new WPInv_Invoice( $quote_id );
13
14 if ( ! $quote->is_quote() ) {
15 return;
16 }
17
18 $GLOBALS['wpinv_quotes']->send_user_quote_email( $quote );
19
20 }
21