Confirm | Reject | Notify

Filters available using WPPizza – Confirm | Reject | Notify

wppizza_crn_sms_branding

Allow “Branding”: Send some arbitrary text instead of sending a phonenumber as “Sender ID”. Be aware that this will not work if you are using 2-way or 3-way SMS settings (as the recipient would not be able to reply). Furthermore, the “Sender ID” must be alphanumeric with 11 characters maximum

@param: str
@return: str

add_filter('wppizza_crn_sms_branding', 'myprefix_crn_branding');
function myprefix_crn_branding($sms_sender_id){

	/* 
		override the sender id 
	*/
	$sms_sender_id = 'My Company';//accepts a-zA-Z0-9 and spaces. 11 chars max

return $sms_sender_id;
}