Help
RSS
API
Feed
Maltego
Contact
Domain > trucentivemail.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2022-05-15
172.64.96.18
(
ClassC
)
2025-12-02
50.6.202.56
(
ClassC
)
Port 443
HTTP/1.1 200 OKDate: Tue, 02 Dec 2025 09:14:48 GMTServer: ApacheP3P: CPALL DSP NID CURa ADMa DEVa HISa OTPa OUR NOR NAV DEMLink: https://trucentivemail.com/wp-json/>; relhttps://api.w.org/, https://trucentivemail.com/wp-json/wp/v2/pages/54780>; relalternate; titleJSON; typeapplication/json, https://trucentivemail.com/>; relshortlinkUpgrade: h2,h2cConnection: UpgradeTransfer-Encoding: chunkedContent-Type: text/html; charsetUTF-8 !DOCTYPE html>html langen-US>head> meta charsetUTF-8> title>TruCentive – TruCentive The All-in-One Incentive Fulfillment and Rewards Delivery Platform/title>meta namerobots contentnoindex, nofollow /> style>img:is(sizesauto i, sizes^auto, i) { contain-intrinsic-size: 3000px 1500px }/style> link relalternate typeapplication/rss+xml titleTruCentive » Feed hrefhttps://trucentivemail.com/feed/ />link relalternate typeapplication/rss+xml titleTruCentive » Comments Feed hrefhttps://trucentivemail.com/comments/feed/ />script>window._wpemojiSettings {baseUrl:https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/72x72\/,ext:.png,svgUrl:https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/svg\/,svgExt:.svg,source:{wpemoji:https:\/\/trucentivemail.com\/wp-includes\/js\/wp-emoji.js?ver6.8.3,twemoji:https:\/\/trucentivemail.com\/wp-includes\/js\/twemoji.js?ver6.8.3}};/** * @output wp-includes/js/wp-emoji-loader.js *//** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback *//** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji *//** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise undefined ) { return; } var sessionStorageKey wpEmojiSettingsSupports; var tests flag, emoji ; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker ! undefined && typeof OffscreenCanvas ! undefined && typeof URL ! undefined && URL.createObjectURL && typeof Blob ! undefined ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item object && typeof item.timestamp number && new Date().valueOf() item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests object ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This is used to determine if the browser is rendering an emoji with multiple data points * correctly. set1 is the emoji in the correct form, using a zero-width joiner. set2 is the emoji * in the incorrect form, using a zero-width space. If the two sets render the same, then the browser * does not support the emoji correctly. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data rendered2 index ; } ); } /** * Checks if the center point of a single emoji is empty. * * This is used to determine if the browser is rendering an emoji with a single data point * correctly. The center point of an incorrectly rendered emoji will be empty. A correctly * rendered emoji will have a non-zero value at the center point. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.8.2 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} emoji Emoji to test. * * @return {boolean} True if the center point is empty. */ function emojiRendersEmptyCenterPoint( context, emoji ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( emoji, 0, 0 ); // Test if the center point (16, 16) is empty (0,0,0,0). var centerPoint context.getImageData(16, 16, 1, 1); for ( var i 0; i centerPoint.data.length; i++ ) { if ( centerPoint.data i ! 0 ) { // Stop checking the moment its known not to be empty. return false; } } return true; } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of flag or emoji. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) { var isIdentical; switch ( type ) { case flag: /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesnt render it correctly (white flag emoji + transgender symbol). */ isIdentical emojiSetsRenderIdentically( context, \uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F, // as a zero-width joiner sequence \uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for Sark flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesnt render it correctly (C + Q). */ isIdentical emojiSetsRenderIdentically( context, \uD83C\uDDE8\uD83C\uDDF6, // as the sequence of two code points \uD83C\uDDE8\u200B\uD83C\uDDF6 // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesnt render it correctly (black flag emoji + G + B + E + N + G). */ isIdentical emojiSetsRenderIdentically( context, // as the flag sequence \uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F, // with each code point separated by a zero-width space \uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F ); return ! isIdentical; case emoji: /* * Does Emoji 16.0 cause the browser to go splat? * * To test for Emoji 16.0 support, try to render a new emoji: Splatter. * * The splatter emoji is a single code point emoji. Testing for browser support * required testing the center point of the emoji to see if it is empty. * * 0xD83E 0xDEDF (\uD83E\uDEDF) 🫟 Splatter. * * When updating this test, please ensure that the emoji is either a single code point * or switch to using the emojiSetsRenderIdentically function and testing with a zero-width * joiner vs a zero-width space. */ var notSupported emojiRendersEmptyCenterPoint( context, \uD83E\uDEDF ); return ! notSupported; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) { var canvas; if ( typeof WorkerGlobalScope ! undefined && self instanceof WorkerGlobalScope ) { canvas new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas document.createElement( canvas ); } var context canvas.getContext( 2d, { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesnt work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline top; context.font 600 32px Arial; var supports {}; tests.forEach( function ( test ) { supports test browserSupportsEmoji( context, test, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script document.createElement( script ); script.src src; script.defer true; document.head.appendChild( script ); } settings.supports { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise new Promise( function ( resolve ) { document.addEventListener( DOMContentLoaded, resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript postMessage( + testEmojiSupports.toString() + ( + JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString(), emojiRendersEmptyCenterPoint.toString() .join( , ) + ));; var blob new Blob( workerScript , { type: text/javascript } ); var worker new Worker( URL.createObjectURL( blob ), { name: wpTestEmojiSupports } ); worker.onmessage function ( event ) { supportTests event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports test supportTests test ; settings.supports.everything settings.supports.everything && settings.supports test ; if ( flag ! test ) { settings.supports.everythingExceptFlag settings.supports.everythingExceptFlag && settings.supports test ; } } settings.supports.everythingExceptFlag settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady false; settings.readyCallback function () { settings.DOMReady true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } );} )( window, document, window._wpemojiSettings );/script>style idwp-emoji-styles-inline-css> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; }/style>style idclassic-theme-styles-inline-css>/** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */.wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it wont override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em;}.wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none;}/style>style idglobal-styles-inline-css>:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}/style>link relstylesheet idhello-elementor-css hrefhttps://trucentivemail.com/wp-content/themes/hello-elementor/style.css?ver2.6.1 mediaall />link relstylesheet idhello-elementor-theme-style-css hrefhttps://trucentivemail.com/wp-content/themes/hello-elementor/theme.css?ver2.6.1 mediaall />link relstylesheet idelementor-frontend-css hrefhttps://trucentivemail.com/wp-content/plugins/elementor/assets/css/frontend.css?ver3.31.3 mediaall />link relstylesheet idelementor-post-5-css hrefhttps://trucentivemail.com/wp-content/uploads/elementor/css/post-5.css?ver1761745087 mediaall />link relstylesheet idwidget-image-css hrefhttps://trucentivemail.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver3.31.3 mediaall />link relstylesheet ide-popup-css hrefhttps://trucentivemail.com/wp-content/plugins/elementor-pro/assets/css/conditionals/popup.min.css?ver3.31.2 mediaall />link relstylesheet idwidget-spacer-css hrefhttps://trucentivemail.com/wp-content/plugins/elementor/assets/css/widget-spacer.min.css?ver3.31.3 mediaall />link relstylesheet idwidget-heading-css hrefhttps://trucentivemail.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver3.31.3 mediaall />link relstylesheet idelementor-post-54780-css hrefhttps://trucentivemail.com/wp-content/uploads/elementor/css/post-54780.css?ver1761745109 mediaall />link relstylesheet idelementor-post-47424-css hrefhttps://trucentivemail.com/wp-content/uploads/elementor/css/post-47424.css?ver1761745087 mediaall />link relstylesheet idelementor-post-37776-css hrefhttps://trucentivemail.com/wp-content/uploads/elementor/css/post-37776.css?ver1761745087 mediaall />link relstylesheet idelementor-gf-local-dmsans-css hrefhttps://trucentivemail.com/wp-content/uploads/elementor/google-fonts/css/dmsans.css?ver1745339435 mediaall />link relstylesheet idelementor-gf-local-spacegrotesk-css hrefhttps://trucentivemail.com/wp-content/uploads/elementor/google-fonts/css/spacegrotesk.css?ver1745339435 mediaall />link relstylesheet idelementor-gf-local-roboto-css hrefhttps://trucentivemail.com/wp-content/uploads/elementor/google-fonts/css/roboto.css?ver1745339439 mediaall />script srchttps://trucentivemail.com/wp-includes/js/jquery/jquery.js?ver3.7.1 idjquery-core-js>/script>script srchttps://trucentivemail.com/wp-includes/js/jquery/jquery-migrate.js?ver3.4.1 idjquery-migrate-js>/script>script idai-js-js-extra>var MyAjax {ajaxurl:https:\/\/trucentivemail.com\/wp-admin\/admin-ajax.php,security:0c5b459acc};/script>script srchttps://trucentivemail.com/wp-content/plugins/advanced-iframe/js/ai.min.js?ver737441 idai-js-js>/script>link relhttps://api.w.org/ hrefhttps://trucentivemail.com/wp-json/ />link relalternate titleJSON typeapplication/json hrefhttps://trucentivemail.com/wp-json/wp/v2/pages/54780 />link relEditURI typeapplication/rsd+xml titleRSD hrefhttps://trucentivemail.com/xmlrpc.php?rsd />meta namegenerator contentWordPress 6.8.3 />link relcanonical hrefhttps://trucentivemail.com/ />link relshortlink hrefhttps://trucentivemail.com/ />link relalternate titleoEmbed (JSON) typeapplication/json+oembed hrefhttps://trucentivemail.com/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Ftrucentivemail.com%2F />link relalternate titleoEmbed (XML) typetext/xml+oembed hrefhttps://trucentivemail.com/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Ftrucentivemail.com%2F&formatxml />meta namegenerator contentElementor 3.31.3; features: e_font_icon_svg, additional_custom_breakpoints, e_element_cache; settings: css_print_method-external, google_font-enabled, font_display-auto>meta nametheme-color content#F37435/> style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } /style> link relicon hrefhttps://trucentivemail.com/wp-content/uploads/2022/06/TruCentive-Logo-and-Favicon512.svg sizes32x32 />link relicon hrefhttps://trucentivemail.com/wp-content/uploads/2022/06/TruCentive-Logo-and-Favicon512.svg sizes192x192 />link relapple-touch-icon hrefhttps://trucentivemail.com/wp-content/uploads/2022/06/TruCentive-Logo-and-Favicon512.svg />meta namemsapplication-TileImage contenthttps://trucentivemail.com/wp-content/uploads/2022/06/TruCentive-Logo-and-Favicon512.svg /> meta nameviewport contentwidthdevice-width, initial-scale1.0, viewport-fitcover />/head>body classhome wp-singular page-template page-template-elementor_canvas page page-id-54780 wp-custom-logo wp-theme-hello-elementor elementor-default elementor-template-canvas elementor-kit-5 elementor-page elementor-page-54780> div data-elementor-typewp-page data-elementor-id54780 classelementor elementor-54780 data-elementor-post-typepage> section classelementor-section elementor-top-section elementor-element elementor-element-e1dd448 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-ide1dd448 data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-cca5811 data-idcca5811 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-f1f616e elementor-widget elementor-widget-spacer data-idf1f616e data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> div classelementor-element elementor-element-3c54e07 elementor-widget elementor-widget-image data-id3c54e07 data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img fetchpriorityhigh decodingasync width500 height117 srchttps://trucentivemail.com/wp-content/uploads/2025/09/TruCentive-Logo-2025-500.png classattachment-large size-large wp-image-55562 alt"" srcsethttps://trucentivemail.com/wp-content/uploads/2025/09/TruCentive-Logo-2025-500.png 500w, https://trucentivemail.com/wp-content/uploads/2025/09/TruCentive-Logo-2025-500-300x70.png 300w sizes(max-width: 500px) 100vw, 500px /> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-810bb5c elementor-section-boxed elementor-section-height-default elementor-section-height-default data-id810bb5c data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0dd0402 data-id0dd0402 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-6e70c53 elementor-widget elementor-widget-heading data-id6e70c53 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>Thanks for Stopping by.../h2> /div> /div> div classelementor-element elementor-element-1cc40ba elementor-widget elementor-widget-html data-id1cc40ba data-element_typewidget data-widget_typehtml.default> div classelementor-widget-container> !doctype html>html langen>head> meta charsetutf-8 /> title>Redirecting…/title> !-- Redirect after 5 seconds --> meta http-equivrefresh content5; urlhttps://trucentive.com> link relcanonical hrefhttps://trucentive.com> meta nameviewport contentwidthdevice-width, initial-scale1 /> script> // JS fallback (also waits 5 seconds) setTimeout(function () { window.location.replace(https://trucentive.com); }, 5000); /script>/head>body>/body>/html> /div> /div> /div> /div> /div> /section> /div> script typespeculationrules>{prefetch:{source:document,where:{and:{href_matches:\/*},{not:{href_matches:\/wp-*.php,\/wp-admin\/*,\/wp-content\/uploads\/*,\/wp-content\/*,\/wp-content\/plugins\/*,\/wp-content\/themes\/hello-elementor\/*,\/*\\?(.+)}},{not:{selector_matches:arel~\nofollow\}},{not:{selector_matches:.no-prefetch, .no-prefetch a}}},eagerness:conservative}}/script> div data-elementor-typepopup data-elementor-id47424 classelementor elementor-47424 elementor-location-popup data-elementor-settings{"prevent_close_on_esc_key":"yes","prevent_scroll":"yes","a11y_navigation":"yes","triggers":,"timing":} data-elementor-post-typeelementor_library> section classelementor-section elementor-top-section elementor-element elementor-element-4f81722f elementor-section-full_width elementor-section-height-default elementor-section-height-default data-id4f81722f data-element_typesection data-settings{"background_background":"classic"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-17d60b11 data-id17d60b11 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> section classelementor-section elementor-inner-section elementor-element elementor-element-6edb2d15 elementor-section-full_width elementor-section-height-default elementor-section-height-default data-id6edb2d15 data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-42d2a149 data-id42d2a149 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-6458f371 elementor-widget elementor-widget-text-editor data-id6458f371 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> h2 styletext-align: center;>strong>span stylecolor: #ffffff;> I’m ready to see what TruCentive can do for me!/span>/strong>/h2> /div> /div> div classelementor-element elementor-element-11b5b8e6 elementor-widget elementor-widget-text-editor data-id11b5b8e6 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>span stylefont-style: inherit; font-weight: inherit; letter-spacing: 0px;>Get answers to your unique questions, and learn /span>how others are using incentivesspan stylefont-style: inherit; font-weight: inherit; letter-spacing: 0px;> in similar programs to the ones you’re planning. /span>/p>p>strong>Seeing is believing!/strong>/p>ul>li>Tell us about your requirements/li>li>We’ll cover the options for your strategy/li>li>We can create samples together to show the actual recipient experience via email and SMS/li>/ul> /div> /div> div classelementor-element elementor-element-7de769ef elementor-widget elementor-widget-image data-id7de769ef data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img width640 height485 srchttps://trucentivemail.com/wp-content/uploads/2022/02/G2-Users-Love-Us-m1.jpg classattachment-large size-large wp-image-41311 altUsers Love Us srcsethttps://trucentivemail.com/wp-content/uploads/2022/02/G2-Users-Love-Us-m1.jpg 640w, https://trucentivemail.com/wp-content/uploads/2022/02/G2-Users-Love-Us-m1-300x227.jpg 300w sizes(max-width: 640px) 100vw, 640px /> /div> /div> /div> /div> div classelementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-25ff5d85 data-id25ff5d85 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-8034150 elementor-widget__width-inherit elementor-widget elementor-widget-html data-id8034150 data-element_typewidget data-widget_typehtml.default> div classelementor-widget-container> !-- Start of Meetings Embed Script --> div classmeetings-iframe-container data-srchttps://meetings.hubspot.com/terry-miller1?embedtrue>/div> script typetext/javascript srchttps://static.hsappstatic.net/MeetingsEmbed/ex/MeetingsEmbedCode.js>/script> !-- End of Meetings Embed Script --> /div> /div> div classelementor-element elementor-element-32ac2aa elementor-align-center elementor-widget elementor-widget-button data-id32ac2aa data-element_typewidget data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-lg hrefhttps://app.trucentive.com/users/sign_up> span classelementor-button-content-wrapper> span classelementor-button-text>SIGN UP FOR FREE/span> /span> /a> /div> /div> /div> /div> /div> /div> /section> /div> /div> /div> /section> /div> div data-elementor-typepopup data-elementor-id37776 classelementor elementor-37776 elementor-location-popup data-elementor-settings{"a11y_navigation":"yes","triggers":,"timing":} data-elementor-post-typeelementor_library> section classelementor-section elementor-top-section elementor-element elementor-element-635b4a9 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-id635b4a9 data-element_typesection> div classelementor-container elementor-column-gap-no> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-26ae098 data-id26ae098 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-fc9075a elementor-absolute elementor-widget elementor-widget-image data-idfc9075a data-element_typewidget data-settings{"_position":"absolute"} data-widget_typeimage.default> div classelementor-widget-container> img srchttps://trucentive.com/wp-content/uploads/2022/02/Home-Button.png title altContact Us Button loadinglazy /> /div> /div> /div> /div> /div> /section> /div> script> const lazyloadRunObserver () > { const lazyloadBackgrounds document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver new IntersectionObserver( ( entries ) > { entries.forEach( ( entry ) > { if ( entry.isIntersecting ) { let lazyloadBackground entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( e-lazyloaded ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: 200px 0px 200px 0px } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) > { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events DOMContentLoaded, elementor/lazyload/observe, ; events.forEach( ( event ) > { document.addEventListener( event, lazyloadRunObserver ); } ); /script> style idcore-block-supports-inline-css>/** * Core styles: block-supports *//style>script srchttps://trucentivemail.com/wp-content/themes/hello-elementor/assets/js/hello-frontend.js?ver1.0.0 idhello-theme-frontend-js>/script>script srchttps://trucentivemail.com/wp-content/plugins/elementor/assets/js/webpack.runtime.js?ver3.31.3 idelementor-webpack-runtime-js>/script>script srchttps://trucentivemail.com/wp-content/plugins/elementor/assets/js/frontend-modules.js?ver3.31.3 idelementor-frontend-modules-js>/script>script srchttps://trucentivemail.com/wp-includes/js/jquery/ui/core.js?ver1.13.3 idjquery-ui-core-js>/script>script idelementor-frontend-js-before>var elementorFrontendConfig {environmentMode:{edit:false,wpPreview:false,isScriptDebug:true},i18n:{shareOnFacebook:Share on Facebook,shareOnTwitter:Share on Twitter,pinIt:Pin it,download:Download,downloadImage:Download image,fullscreen:Fullscreen,zoom:Zoom,share:Share,playVideo:Play Video,previous:Previous,next:Next,close:Close,a11yCarouselPrevSlideMessage:Previous slide,a11yCarouselNextSlideMessage:Next slide,a11yCarouselFirstSlideMessage:This is the first slide,a11yCarouselLastSlideMessage:This is the last slide,a11yCarouselPaginationBulletMessage:Go to slide},is_rtl:false,breakpoints:{xs:0,sm:480,md:768,lg:1025,xl:1440,xxl:1600},responsive:{breakpoints:{mobile:{label:Mobile Portrait,value:767,default_value:767,direction:max,is_enabled:true},mobile_extra:{label:Mobile Landscape,value:880,default_value:880,direction:max,is_enabled:false},tablet:{label:Tablet Portrait,value:1024,default_value:1024,direction:max,is_enabled:true},tablet_extra:{label:Tablet Landscape,value:1200,default_value:1200,direction:max,is_enabled:false},laptop:{label:Laptop,value:1366,default_value:1366,direction:max,is_enabled:false},widescreen:{label:Widescreen,value:2400,default_value:2400,direction:min,is_enabled:false}},hasCustomBreakpoints:false},version:3.31.3,is_static:false,experimentalFeatures:{e_font_icon_svg:true,additional_custom_breakpoints:true,container:true,theme_builder_v2:true,hello-theme-header-footer:true,landing-pages:true,nested-elements:true,e_element_cache:true,home_screen:true,global_classes_should_enforce_capabilities:true,e_variables:true,cloud-library:true,e_opt_in_v4_page:true},urls:{assets:https:\/\/trucentivemail.com\/wp-content\/plugins\/elementor\/assets\/,ajaxurl:https:\/\/trucentivemail.com\/wp-admin\/admin-ajax.php,uploadUrl:https:\/\/trucentivemail.com\/wp-content\/uploads},nonces:{floatingButtonsClickTracking:f6eef6f4c8},swiperClass:swiper,settings:{page:,editorPreferences:},kit:{body_background_background:classic,active_breakpoints:viewport_mobile,viewport_tablet,global_image_lightbox:yes,lightbox_enable_counter:yes,lightbox_enable_fullscreen:yes,lightbox_enable_zoom:yes,lightbox_enable_share:yes,lightbox_title_src:title,lightbox_description_src:description,hello_header_logo_type:logo,hello_header_menu_layout:horizontal,hello_footer_logo_type:logo},post:{id:54780,title:TruCentive%20%E2%80%93%20TruCentive%20The%20All-in-One%20Incentive%20Fulfillment%20and%20Rewards%20Delivery%20Platform,excerpt:,featuredImage:false}};/script>script srchttps://trucentivemail.com/wp-content/plugins/elementor/assets/js/frontend.js?ver3.31.3 idelementor-frontend-js>/script>script srchttps://trucentivemail.com/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.js?ver3.31.2 idelementor-pro-webpack-runtime-js>/script>script srchttps://trucentivemail.com/wp-includes/js/dist/hooks.js?verbe67dc331e61e06d52fa idwp-hooks-js>/script>script srchttps://trucentivemail.com/wp-includes/js/dist/i18n.js?ver5edc734adb78e0d7d00e idwp-i18n-js>/script>script idwp-i18n-js-after>wp.i18n.setLocaleData( { text direction\u0004ltr: ltr } );/script>script idelementor-pro-frontend-js-before>var ElementorProFrontendConfig {ajaxurl:https:\/\/trucentivemail.com\/wp-admin\/admin-ajax.php,nonce:4ebabce32e,urls:{assets:https:\/\/trucentivemail.com\/wp-content\/plugins\/elementor-pro\/assets\/,rest:https:\/\/trucentivemail.com\/wp-json\/},settings:{lazy_load_background_images:true},popup:{hasPopUps:true},shareButtonsNetworks:{facebook:{title:Facebook,has_counter:true},twitter:{title:Twitter},linkedin:{title:LinkedIn,has_counter:true},pinterest:{title:Pinterest,has_counter:true},reddit:{title:Reddit,has_counter:true},vk:{title:VK,has_counter:true},odnoklassniki:{title:OK,has_counter:true},tumblr:{title:Tumblr},digg:{title:Digg},skype:{title:Skype},stumbleupon:{title:StumbleUpon,has_counter:true},mix:{title:Mix},telegram:{title:Telegram},pocket:{title:Pocket,has_counter:true},xing:{title:XING,has_counter:true},whatsapp:{title:WhatsApp},email:{title:Email},print:{title:Print},x-twitter:{title:X},threads:{title:Threads}},facebook_sdk:{lang:en_US,app_id:},lottie:{defaultAnimationUrl:https:\/\/trucentivemail.com\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json}};/script>script srchttps://trucentivemail.com/wp-content/plugins/elementor-pro/assets/js/frontend.js?ver3.31.2 idelementor-pro-frontend-js>/script>script srchttps://trucentivemail.com/wp-content/plugins/elementor-pro/assets/js/elements-handlers.js?ver3.31.2 idpro-elements-handlers-js>/script> /body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]