Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
MP_Addon_SMS_Callback::thanks_message()
Send thank you SMS to Lead.
Source Source
File: calculator-sms-add-on/inc/MP_Addon_SMS_Callback.php
private function thanks_message(){
$response = new TwiML\MessagingResponse();
$message = get_option( MortgagePlatform::$prefix . 'sms' )['send_thankyou_sms'] ? get_option( MortgagePlatform::$prefix . 'sms' )['send_thankyou_sms'] : __( 'Thank you for your message, we will reply to you shortly.', 'CalculatorSMSAddon' );
$response->message( $message );
print esc_attr( $response );
wp_die();
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |