Server IP : 104.21.38.3 / Your IP : 172.70.142.237 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/coircraft.com/wp-content/plugins/caldera-forms/ui/emails/ |
Upload File : |
<?php /** * View for email preview * * @package Caldera_Forms * @author Josh Pollock <[email protected]> * @license GPL-2.0+ * @link * @copyright 2016 CalderaWP LLC */ if( ! defined( 'ABSPATH' ) || ! isset( $message, $headers ) ){ exit; } status_header( 200 ); header( "Content-Type: text/html" ); header( "Pragma: public" ); header( "Expires: 0" ); header( "Cache-Control: no-cache, must-revalidate, post-check=0, pre-check=0" ); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title><?php esc_html_e( 'Caldera Forms Email Preview', 'caldera-forms' ); ?></title> <style> body { background-color: #DFDFDF; } #wrap { margin-top: 20%; position: relative; } #inner { width: 80%; padding: 24px; background-color: #fff; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } #headers { border-bottom: 1px solid #DFDFDF; } pre { display: inline; } </style> </head> <body> <div id="wrap"> <div id="inner"> <div id="headers" class="item"> <?php echo $headers; ?> </div> <div id="message"> <?php echo $message; ?> </div> </div> </div> </body> </html>