Spotlight On The Next Future Martech Leader

Kumar is responsible for formulating and executing end-to-end digital marketing activities, managing marketing automation and CRM marketing efforts, overseeing digital transformation projects in the martech domain, and leading the Marketing Intelligence Unit. This unit is tasked with conducting business and marketing data analytics to facilitate informed decision-making by the management team.
In the aftermath of COVID-19, the airline industry faced a dual challenge: Transforming its operations and enhancing sustainability while also dealing with a surge in customer inquiries. Jazeera Airlines initially relied on traditional call and email channels for customer service, which proved inadequate for the increased volume.
Upon joining the company, Kumar tackled this issue head-on by leveraging his prior experience with the WhatsApp Business API. Within two months, he successfully integrated the platform, enabling the deployment of automated solutions for tasks like flight changes, baggage tracking, and FAQ responses. This relieved customer service agents, allowing them to focus on more complex cases, and led to a 150% improvement in turnaround time. Additionally, the airline’s Net Promoter Score (NPS) increased by approximately 35%.
Additionally, Kumar took the initiative to construct the entire martech stack from the ground up and seamlessly integrated it with Sitecore CDP, MoEngage Marketing Automation Tool, Adjust MMP, and Firebase Console. This strategic effort resulted in a remarkable enhancement of online transactions, with an increase of over 50% (surpassing 150% for mobile applications alone) over the span of two years.
var enableSignupBtn = function(response) { // console.log(response); document.getElementById("submit_button").disabled = false; }; var onloadCallback = function() { grecaptcha.render('recaptcha_ele_login', { 'sitekey' : '6Lf36zUlAAAAAJ0m5sUYVlX3dykp7_TVBfdliFOP', 'callback': enableSignupBtn }); grecaptcha.render('recaptcha_ele_signup', { 'sitekey' : '6Lf36zUlAAAAAJ0m5sUYVlX3dykp7_TVBfdliFOP', 'callback': enableSignupBtn }); grecaptcha.render('recaptcha_ele_forgot', { 'sitekey' : '6Lf36zUlAAAAAJ0m5sUYVlX3dykp7_TVBfdliFOP', 'callback': enableSignupBtn }); };
// jQuery(document).ready(function(){ jQuery('#error').hide(); jQuery('#success').hide(); jQuery('.signup').hide(); jQuery('.forgot').hide(); jQuery('.modal__close').click(()=>{ jQuery('body').removeClass('popup-open'); jQuery('#login-sign-popup').fadeOut(300); });
function showPopupForm(type){ jQuery('.login-sign-form').hide(); jQuery('.'+type).show(); }
jQuery( ".login-sign-form" ).submit(function( event ) { var forms = document.getElementsByClassName('needs-validation'); // Loop over them and prevent submission var validation = Array.prototype.filter.call(forms, function(form) { form.addEventListener('submit', function(event) { console.log('event', event.target.id); if (form.checkValidity() === false) { event.preventDefault(); event.stopPropagation(); }else{ event.preventDefault(); event.stopPropagation(); var formData = jQuery('#'+event.target.id).serializeArray(); // console.log('formData', formData); if(formData){ var postData = { newsletter_permission:[] };
formData.forEach(element => { if(element.name.includes('newsletter_permission')){ postData['newsletter_permission'].push(element.value); }else{ postData[element.name] = element.value; }
}); // } if(postData.action == 'login'){ postData.action = 'login_user'; }else if(postData.action == 'signup'){ postData.action = 'ajex-signup'; }else if(postData.action == 'forgot'){ postData.action = 'lost_password'; }
var data = { ...postData } var ajaxurl="https://martechvibe.com/wp-admin/admin-ajax.php";
// console.log('data', data); jQuery.ajax({ method: "POST", dataType: "json", url: ajaxurl, data: data, }).done(function( msg ) { console.log('msg', msg); if(msg.status){ // form.classList.add('was-validated'); jQuery('#success').show(); jQuery('#success').html(msg.message); setTimeout(() => { jQuery('#success').hide(); window.location.href="https://martechvibe.com"; }, 3000);
}else{ jQuery('#error').show(); jQuery('#error').html(msg.message); setTimeout(() => { jQuery('#error').hide(); }, 3000); } }); } } form.classList.add('was-validated'); }, false); }); return false; });
window.fbAsyncInit = function() { // FB JavaScript SDK configuration and setup FB.init({ appId: '770362491123124', // FB App ID cookie: true, // enable cookies to allow the server to access the session xfbml: true, // parse social plugins on this page version: 'v3.2' // use graph api version 2.8 }); };
// Load the JavaScript SDK asynchronously (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "https://connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));
// Facebook login with JavaScript SDK function fbLogin() { FB.login(function(response) { if (response.authResponse) { // Get and display the user profile data getFbUserData();
} else { document.getElementById('status').innerHTML = 'User cancelled login or did not fully authorize.'; } }, { scope: 'email' }); }
// Fetch the user profile data from facebook function getFbUserData() { FB.api('/me', { locale: 'en_US', fields: 'id,first_name,last_name,email,link,gender,locale,picture' }, function(response) { if(response && response.email){ saveUserData(response); }else{ var email = response.first_name+'_'+response.last_name+'@facebook.com'; saveUserData({...response, email: email}); } //console.log(response); // alert(response.first_name+' '+response.email); // document.getElementById('fbLink').setAttribute("onclick", "fbLogout()"); // document.getElementById('fbLink').innerHTML = 'Logout from Facebook'; // document.getElementById('status').innerHTML = '
Thanks for logging in, ' + response.first_name + '!
'; // document.getElementById('userData').innerHTML = '
Facebook Profile Details
FB ID: ' + response.id + '
Name: ' + response.first_name + ' ' + response.last_name + '
Email: ' + response.email + '
Gender: ' + response.gender + '
FB Profile: click to view profile
';
}); }
function saveUserData(userData){ // console.log('userData', userData); jQuery.ajax({ type: 'POST', url: "https://martechvibe.com/wp-admin/admin-ajax.php", dataType: "json", data: {'email': userData.email, 'first_name': userData.first_name, 'last_name': userData.last_name, 'action': 'add_social_login'}, success: function(response) { if(response.error_type == 'error'){
}else{ localStorage.setItem('user_id', response.user_id); window.location.reload(); }
} }); }
// Logout from facebook
function fbLogout() {
FB.logout(function() {
document.getElementById('fbLink').setAttribute("onclick", "fbLogin()");
document.getElementById('fbLink').innerHTML = '';
document.getElementById('userData').innerHTML = '';
document.getElementById('status').innerHTML = '
You have successfully logout from Facebook.
'; }); }
// (function() { // 'use strict'; // window.addEventListener('load', function() { // // Get the forms we want to add validation styles to // var forms = document.getElementsByClassName('needs-validation'); // // Loop over them and prevent submission // var validation = Array.prototype.filter.call(forms, function(form) { // form.addEventListener('submit', function(event) { // console.log('event', event.target.id); // if (form.checkValidity() === false) { // event.preventDefault(); // event.stopPropagation();
// // return false; // }else{ // event.preventDefault(); // event.stopPropagation(); // var formData = jQuery('#'+event.target.id).serializeArray(); // // console.log('formData', formData); // if(formData){ // var postData = { // newsletter_permission:[] // };
// formData.forEach(element => { // if(element.name.includes('newsletter_permission')){ // postData['newsletter_permission'].push(element.value); // }else{ // postData[element.name] = element.value; // }
// }); // // } // if(postData.action == 'login'){ // postData.action = 'login_user'; // }else if(postData.action == 'signup'){ // postData.action = 'ajex-signup'; // }else if(postData.action == 'forgot'){ // postData.action = 'lost_password'; // }
// var data = { // ...postData // } // var ajaxurl="https://martechvibe.com/wp-admin/admin-ajax.php";
// // console.log('data', data); // jQuery.ajax({ // method: "POST", // dataType: "json", // url: ajaxurl, // data: data, // }).done(function( msg ) { // console.log('msg', msg); // if(msg.status){ // // form.classList.add('was-validated'); // jQuery('#success').show(); // jQuery('#success').html(msg.message); // setTimeout(() => { // jQuery('#success').hide(); // window.location.href="https://martechvibe.com"; // }, 3000);
// }else{ // jQuery('#error').show(); // jQuery('#error').html(msg.message); // setTimeout(() => { // jQuery('#error').hide(); // }, 3000); // } // }); // } // } // form.classList.add('was-validated'); // }, false);
// });
// }, false);
// })();
// });
Source link