forked from LiveCarta/LiveCartaWP
Changed source root directory
This commit is contained in:
@@ -0,0 +1,494 @@
|
||||
<?php
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly
|
||||
}
|
||||
|
||||
class PostmanSendTestEmailController {
|
||||
const EMAIL_TEST_SLUG = 'postman/email_test';
|
||||
const RECIPIENT_EMAIL_FIELD_NAME = 'postman_recipient_email';
|
||||
|
||||
// logging
|
||||
private $logger;
|
||||
private $options;
|
||||
private $allowed_tags = array(
|
||||
'input' => array(
|
||||
'type' => array(),
|
||||
'id' => array(),
|
||||
'name' => array(),
|
||||
'value' => array(),
|
||||
'class' => array(),
|
||||
'placeholder' => array(),
|
||||
'size' => array(),
|
||||
)
|
||||
);
|
||||
|
||||
// Holds the values to be used in the fields callbacks
|
||||
private $rootPluginFilenameAndPath;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param mixed $rootPluginFilenameAndPath
|
||||
*/
|
||||
public function __construct( $rootPluginFilenameAndPath ) {
|
||||
assert( ! empty( $rootPluginFilenameAndPath ) );
|
||||
assert( PostmanUtils::isAdmin() );
|
||||
assert( is_admin() );
|
||||
|
||||
$this->logger = new PostmanLogger( get_class( $this ) );
|
||||
$this->rootPluginFilenameAndPath = $rootPluginFilenameAndPath;
|
||||
$this->options = PostmanOptions::getInstance();
|
||||
|
||||
PostmanUtils::registerAdminMenu( $this, 'addEmailTestSubmenu' );
|
||||
|
||||
// hook on the init event
|
||||
add_action( 'init', array(
|
||||
$this,
|
||||
'on_init',
|
||||
) );
|
||||
|
||||
// initialize the scripts, stylesheets and form fields
|
||||
add_action( 'admin_init', array(
|
||||
$this,
|
||||
'on_admin_init',
|
||||
) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Functions to execute on the init event
|
||||
*
|
||||
* "Typically used by plugins to initialize. The current user is already authenticated by this time."
|
||||
* ref: http://codex.wordpress.org/Plugin_API/Action_Reference#Actions_Run_During_a_Typical_Request
|
||||
*/
|
||||
public function on_init() {
|
||||
// register Ajax handlers
|
||||
new PostmanSendTestEmailAjaxController();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fires on the admin_init method
|
||||
*/
|
||||
public function on_admin_init() {
|
||||
$this->registerStylesAndScripts();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the settings option array and print one of its values
|
||||
*/
|
||||
public function test_email_callback() {
|
||||
return sprintf(
|
||||
'<input type="text" id="%s" name="postman_test_options[test_email]" value="%s" class="ps-input required email" size="40"/>',
|
||||
esc_attr( self::RECIPIENT_EMAIL_FIELD_NAME ),
|
||||
esc_attr( wp_get_current_user()->user_email )
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Register and add settings
|
||||
*/
|
||||
private function registerStylesAndScripts() {
|
||||
if ( $this->logger->isTrace() ) {
|
||||
$this->logger->trace( 'registerStylesAndScripts()' );
|
||||
}
|
||||
|
||||
$pluginData = apply_filters( 'postman_get_plugin_metadata', null );
|
||||
|
||||
// register the stylesheet resource
|
||||
wp_register_style( 'postman_send_test_email', plugins_url( 'Postman/Postman-Send-Test-Email/postman_send_test_email.css', $this->rootPluginFilenameAndPath ), PostmanViewController::POSTMAN_STYLE, $pluginData ['version'] );
|
||||
|
||||
// register the javascript resource
|
||||
wp_register_script( 'postman_test_email_wizard_script', plugins_url( 'Postman/Postman-Send-Test-Email/postman_send_test_email.js', $this->rootPluginFilenameAndPath ), array(
|
||||
PostmanViewController::JQUERY_SCRIPT,
|
||||
'jquery_validation',
|
||||
'jquery_steps_script',
|
||||
PostmanViewController::POSTMAN_SCRIPT,
|
||||
), $pluginData ['version'] );
|
||||
}
|
||||
|
||||
/**
|
||||
* Register the Email Test screen
|
||||
*/
|
||||
public function addEmailTestSubmenu() {
|
||||
$page = add_submenu_page(
|
||||
' ',
|
||||
sprintf( '%s', esc_html__( 'Postman SMTP Setup', 'post-smtp' ) ),
|
||||
esc_html__( 'Postman SMTP', 'post-smtp' ),
|
||||
Postman::MANAGE_POSTMAN_CAPABILITY_NAME, PostmanSendTestEmailController::EMAIL_TEST_SLUG, array(
|
||||
$this,
|
||||
'outputTestEmailContent',
|
||||
) );
|
||||
// When the plugin options page is loaded, also load the stylesheet
|
||||
add_action( 'admin_print_styles-' . $page, array(
|
||||
$this,
|
||||
'enqueueEmailTestResources',
|
||||
) );
|
||||
}
|
||||
|
||||
/**
|
||||
*/
|
||||
function enqueueEmailTestResources() {
|
||||
wp_enqueue_style( 'jquery_steps_style' );
|
||||
wp_enqueue_style( PostmanViewController::POSTMAN_STYLE );
|
||||
wp_enqueue_style( 'postman_send_test_email' );
|
||||
wp_enqueue_script( 'postman_test_email_wizard_script' );
|
||||
wp_localize_script( PostmanViewController::POSTMAN_SCRIPT, 'postman_email_test', array(
|
||||
'recipient' => '#' . self::RECIPIENT_EMAIL_FIELD_NAME,
|
||||
'not_started' => _x( 'In Outbox', 'Email Test Status', 'post-smtp' ),
|
||||
'sending' => _x( 'Sending...', 'Email Test Status', 'post-smtp' ),
|
||||
'success' => _x( 'Success', 'Email Test Status', 'post-smtp' ),
|
||||
//'failed' => _x( 'Failed', 'Email Test Status', 'post-smtp' ),
|
||||
'failed' => sprintf( 'Failed - Check the plugin email log for more info: %s', '<a href="' . esc_url( admin_url( 'admin.php?page=postman_email_log' ) ) . '">Here</a>' ),
|
||||
'ajax_error' => __( 'Ajax Error', 'post-smtp' ),
|
||||
) );
|
||||
}
|
||||
|
||||
/**
|
||||
*/
|
||||
public function outputTestEmailContent() {
|
||||
$page_url = add_query_arg(
|
||||
array(
|
||||
'page' => 'postman',
|
||||
),
|
||||
admin_url( 'admin.php' )
|
||||
);
|
||||
|
||||
$user_email = wp_get_current_user()->user_email;
|
||||
|
||||
$nonce_field = wp_nonce_field( 'post-smtp', 'security', true, false );
|
||||
echo '
|
||||
<div class="send-test-email">
|
||||
|
||||
<div class="ps-logo">
|
||||
<img src="' . esc_attr( POST_SMTP_ASSETS ) . '/images/logos/post-smtp-logo-large.svg" width="250px" alt="Post SMTP Logo">
|
||||
</div>
|
||||
|
||||
<div class="ps-outer">
|
||||
|
||||
<div class="ps-body-section">
|
||||
|
||||
<div class="ps-nav float-left">
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="ps-circle">
|
||||
<span class="ps-tick dashicons dashicons-yes-alt birth-check"></span>
|
||||
</td>
|
||||
<td class="ps-text">
|
||||
' . esc_html__( 'Send Test Email', 'post-smtp' ) . '
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ps-pages float-right">
|
||||
|
||||
<form action="' . esc_attr( $page_url ) . '" method="post" id="postman_test_email_wizard">
|
||||
|
||||
<div style="overflow-y: scroll;max-height: 469px;" class="ps-screens-container">
|
||||
<div class="ps-step">
|
||||
|
||||
<p>
|
||||
' . esc_html__( 'This step allows you to send an email message for testing. If there is a problem, Post SMTP will give up after 60 seconds.', 'post-smtp' ) . '
|
||||
</p>
|
||||
|
||||
<div class="ps-form-ui">
|
||||
|
||||
<div class="ps-form-control">
|
||||
|
||||
<div>
|
||||
<label for="postman_test_options_test_email">
|
||||
' . esc_html__( 'Recipient Email Address', 'post-smtp' ) . '
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<input id="postman_test_options_test_email" type="text" class="ps-test-to" required="" data-error="Enter Recipient Email Address" name="postman_test_options[test_email]" value="' . esc_attr( $user_email ) . '" placeholder="Recipient Email Address">
|
||||
' . $nonce_field . '
|
||||
|
||||
<span class="ps-form-control-info">
|
||||
' . esc_html__( 'Enter the email address where you want to send the test email.', 'post-smtp' ) . '
|
||||
</span>
|
||||
|
||||
<p class="ps-form-control-info">
|
||||
' . esc_html__( 'Are your WordPress emails getting broken? Check out our guide on', 'post-smtp' ) . '
|
||||
<a href="https://postmansmtp.com/fix-for-broken-emails/?utm_source=plugin&utm_medium=wizard&utm_campaign=plugin" target="_blank">' . esc_html__( 'how to Fix Broken Emails', 'post-smtp' ) . '</a>
|
||||
.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<span id="when-button-clicked" class="float-left spinner" style="margin-top: 10px;display: none;"></span>
|
||||
<button class="button button-primary ps-blue-button ps-next-button">
|
||||
' . esc_html__( 'Send Test Email', 'post-smtp' ) . '
|
||||
<span class="dashicons dashicons-email"></span>
|
||||
</button>
|
||||
|
||||
<a id="ps-show-transcript" href="#" style="float:right;margin-top: 10px;display: none;">View Transcript</a>
|
||||
|
||||
<div>
|
||||
<p class="ps-success"></p>
|
||||
<p class="ps-error"></p>
|
||||
</div>
|
||||
|
||||
<div id="ps-transcript-container" style="display: none;">
|
||||
<p style="display: none;" class="ps-transcript">
|
||||
<textarea readonly cols="65" rows="8"></textarea>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ps-footer">
|
||||
<div class="ps-footer-content float-left">
|
||||
<div class="ps-nav">
|
||||
<table>
|
||||
|
||||
<tr>
|
||||
<td class="ps-circle">
|
||||
<span class="ps-tick dashicons dashicons-yes-alt ps-ste-bm">
|
||||
<span class="ps-line"></span>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="ps-footer-content float-right">
|
||||
<div class="ps-step">
|
||||
|
||||
<div class="ps-ste-clearfix">
|
||||
<div class="ps-right">
|
||||
<a href="' . esc_attr( add_query_arg( array( 'page' => 'postman' ), admin_url( 'admin.php' ) ) ) . '" class="button button-primary ps-blue-button show-when-email-sent" style="display: none;">Finish</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @author jasonhendriks
|
||||
*/
|
||||
class PostmanSendTestEmailAjaxController extends PostmanAbstractAjaxHandler {
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param PostmanOptions $options
|
||||
* @param PostmanOAuthToken $authorizationToken
|
||||
* @param PostmanConfigTextHelper $oauthScribe
|
||||
*/
|
||||
function __construct() {
|
||||
parent::__construct();
|
||||
PostmanUtils::registerAjaxHandler( 'postman_send_test_email', $this, 'sendTestEmailViaAjax' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Yes, this procedure is just for testing.
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
function test_mode() {
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* This Ajax sends a test email
|
||||
*
|
||||
* @since 1.0
|
||||
* @since 2.0.25 @filter `postman_test_email_args`
|
||||
* @version 1.0
|
||||
*/
|
||||
function sendTestEmailViaAjax() {
|
||||
|
||||
check_admin_referer('post-smtp', 'security');
|
||||
|
||||
if( !current_user_can( Postman::MANAGE_POSTMAN_CAPABILITY_NAME ) ) {
|
||||
wp_send_json_error(
|
||||
array(
|
||||
'Message' => 'Unauthorized.'
|
||||
),
|
||||
401
|
||||
);
|
||||
}
|
||||
|
||||
// get the email address of the recipient from the HTTP Request
|
||||
$email = $this->getRequestParameter( 'email' );
|
||||
|
||||
// get the name of the server from the HTTP Request
|
||||
$serverName = PostmanUtils::postmanGetServerName();
|
||||
|
||||
/* translators: where %s is the domain name of the site */
|
||||
$subject = sprintf( _x( 'Postman SMTP Test (%s)', 'Test Email Subject', 'post-smtp' ), $serverName );
|
||||
|
||||
// Postman API: indicate to Postman this is just for testing
|
||||
add_filter( 'postman_test_email', array(
|
||||
$this,
|
||||
'test_mode',
|
||||
) );
|
||||
|
||||
// this header specifies that there are many parts (one text part, one html part)
|
||||
$header = 'Content-Type: multipart/alternative;' . "\r\n";
|
||||
$header .= 'MIME-Version: 1.0' . "\r\n";
|
||||
|
||||
// createt the message content
|
||||
$message = $this->createMessageContent();
|
||||
|
||||
$email_args = apply_filters( 'postman_test_email_args', compact( 'email', 'subject', 'message', 'header' ) );
|
||||
extract( $email_args );
|
||||
|
||||
// send the message
|
||||
$success = wp_mail( $email, $subject, $message, $header );
|
||||
|
||||
// Postman API: remove the testing indicator
|
||||
remove_filter( 'postman_test_email', array(
|
||||
$this,
|
||||
'test_mode',
|
||||
) );
|
||||
|
||||
// Postman API: retrieve the result of sending this message from Postman
|
||||
$result = apply_filters( 'postman_wp_mail_result', null );
|
||||
|
||||
// post-handling
|
||||
if ( $success ) {
|
||||
$this->logger->debug( 'Test Email delivered to server' );
|
||||
// the message was sent successfully, generate an appropriate message for the user
|
||||
$statusMessage = sprintf( __( 'Your message was delivered (%d ms) to the SMTP server! Congratulations :)', 'post-smtp' ), $result ['time'] );
|
||||
|
||||
$this->logger->debug( 'statusmessage: ' . $statusMessage );
|
||||
|
||||
// compose the JSON response for the caller
|
||||
$response = array(
|
||||
'message' => $statusMessage,
|
||||
'transcript' => $result ['transcript'],
|
||||
);
|
||||
|
||||
// log the response
|
||||
if ( $this->logger->isTrace() ) {
|
||||
$this->logger->trace( 'Ajax Response:' );
|
||||
$this->logger->trace( $response );
|
||||
}
|
||||
|
||||
// send the JSON response
|
||||
wp_send_json_success( $response );
|
||||
} else {
|
||||
$this->logger->error( 'Test Email NOT delivered to server - ' . $result ['exception']->getCode() );
|
||||
// the message was NOT sent successfully, generate an appropriate message for the user
|
||||
$statusMessage = $result ['exception']->getMessage();
|
||||
|
||||
$this->logger->debug( 'statusmessage: ' . $statusMessage );
|
||||
|
||||
// compose the JSON response for the caller
|
||||
$response = array(
|
||||
'message' => $statusMessage,
|
||||
'transcript' => $result ['transcript'],
|
||||
);
|
||||
|
||||
// log the response
|
||||
if ( $this->logger->isTrace() ) {
|
||||
$this->logger->trace( 'Ajax Response:' );
|
||||
$this->logger->trace( $response );
|
||||
}
|
||||
|
||||
// send the JSON response
|
||||
wp_send_json_error( $response );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Create the multipart message content
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
private function createMessageContent() {
|
||||
// Postman API: Get the plugin metadata
|
||||
$pluginData = apply_filters( 'postman_get_plugin_metadata', null );
|
||||
|
||||
/*
|
||||
translators: where %s is the Postman plugin version number (e.g. 1.4) */
|
||||
// English - Mandarin - French - Hindi - Spanish - Portuguese - Russian - Japanese
|
||||
// http://www.pinyin.info/tools/converter/chars2uninumbers.html
|
||||
$greeting = 'Hello! - 你好 - Bonjour! - नमस्ते - ¡Hola! - Olá - Привет! - 今日は';
|
||||
$sentBy = sprintf( _x( 'Sent by Postman %s', 'Test Email Tagline', 'post-smtp' ), $pluginData ['version'] );
|
||||
$imageSource = __( 'Image source', 'post-smtp' );
|
||||
$withPermission = __( 'Used with permission', 'post-smtp' );
|
||||
$emailBody = '
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
<table style="width: 600px;margin:50px auto;color:#7D98B2;font-size:12px;padding:30px 0;">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
<a href="https://postmansmtp.com/"><img style="width: 160px;" src="'.esc_attr( POST_SMTP_ASSETS ).'/images/logos/postman-logo-email.png"/></a>
|
||||
</th>
|
||||
</tr>
|
||||
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="padding: 0 20px;">Hey there 👋,</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 0 20px;"><h3 style="color:#214A72;font-size:16px;font-weight:600;display: inline-block;margin:0; font-size: 20px;">Congrats! Your test email was sent successfully</h3></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:0 20px;line-height: 20px;">Thank you for using Post SMTP. Our mission is to enhance you email deliverability.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://postmansmtp.com/post-smtp-mobile-app/" target="_blank">
|
||||
<img style=" margin: 20px 0; width:100%" src="'.esc_attr( POST_SMTP_ASSETS ).'/images/logos/post-man-banner.png"/>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:0 20px;font-size: 12px;text-align: center;">
|
||||
This email was sent from your website <a href="'.home_url().'" target="_blank"><strong>'.get_bloginfo().'</strong></a> to test your email functionality.
|
||||
</td>
|
||||
</tr>
|
||||
</tbod';
|
||||
$messageArray = array(
|
||||
'Content-Type: text/plain; charset = "UTF-8"',
|
||||
'Content-Transfer-Encoding: 8bit',
|
||||
'',
|
||||
'Hello!',
|
||||
'',
|
||||
sprintf( '%s - https://wordpress.org/plugins/post-smtp/', $sentBy ),
|
||||
'',
|
||||
'Content-Type: text/html; charset=UTF-8',
|
||||
'Content-Transfer-Encoding: quoted-printable',
|
||||
'',
|
||||
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
|
||||
'<html xmlns="http://www.w3.org/1999/xhtml">',
|
||||
'<head>',
|
||||
'<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />',
|
||||
'<style type="text/css" media="all">',
|
||||
'.wporg-notification .im {',
|
||||
' color: #888;',
|
||||
'} /* undo a GMail-inserted style */',
|
||||
'</style>',
|
||||
'</head>',
|
||||
'<body class="wporg-notification">',
|
||||
' <div style="style=" width: 600px; margin: 0 auto;">',
|
||||
$emailBody,
|
||||
'</body>',
|
||||
'</html>',
|
||||
);
|
||||
return implode( PostmanMessage::EOL, $messageArray );
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,191 @@
|
||||
/*!*******************************************************************!*\
|
||||
!*** css ./node_modules/css-loader/dist/cjs.js!./src/css/app.css ***!
|
||||
\*******************************************************************/
|
||||
|
||||
.float-left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.float-right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.send-test-email {
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.send-test-email .ps-outer {
|
||||
border: 2px solid #375caf;
|
||||
border-radius: 7px;
|
||||
width: 907px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.ps-body-section {
|
||||
margin: 25px 0;
|
||||
}
|
||||
|
||||
.ps-body-section::after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.ps-body-section .ps-nav {
|
||||
height: 350px;
|
||||
}
|
||||
|
||||
.send-test-email .ps-nav table {
|
||||
padding: 0 25px;
|
||||
}
|
||||
|
||||
.send-test-email .ps-nav {
|
||||
border-right: 1px solid #d9d9d9;
|
||||
width: 32%;
|
||||
}
|
||||
|
||||
.send-test-email .ps-nav table td {
|
||||
padding: 12px 6px;
|
||||
vertical-align: center;
|
||||
}
|
||||
|
||||
.send-test-email .ps-circle {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.send-test-email .ps-circle .ps-tick {
|
||||
display: inline-block;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
font-size: 44px;
|
||||
color: #375caf;
|
||||
position: relative;
|
||||
z-index: 8;
|
||||
}
|
||||
|
||||
.send-test-email .ps-circle .ps-tick::before {
|
||||
content: '';
|
||||
height: 35px;
|
||||
width: 35px;
|
||||
border-radius: 40px;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
line-height: 1;
|
||||
margin: auto;
|
||||
background-color: #375caf;
|
||||
}
|
||||
|
||||
.send-test-email .ps-circle .birth-check.ps-tick::before {
|
||||
content: '\f12a';
|
||||
height: 35px;
|
||||
width: 35px;
|
||||
border-radius: 40px;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
line-height: 1;
|
||||
margin: auto;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.send-test-email .ps-text {
|
||||
padding: 12px 6px;
|
||||
vertical-align: middle;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.send-test-email .ps-footer {
|
||||
padding: 17px 0;
|
||||
/*background: #f1f1f1;*/
|
||||
}
|
||||
|
||||
.send-test-email .ps-footer-content.float-left {
|
||||
width: 32%;
|
||||
}
|
||||
|
||||
.send-test-email .ps-footer-content .ps-nav table {
|
||||
padding: 0 25px;
|
||||
}
|
||||
|
||||
.send-test-email .ps-footer-content .ps-nav {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.send-test-email .ps-footer::after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.send-test-email .ps-line::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 3px;
|
||||
height: 360px;
|
||||
left: 26px;
|
||||
bottom: 41px;
|
||||
background: #d9d9d9;
|
||||
z-index: -3;
|
||||
}
|
||||
|
||||
.send-test-email .ps-pages {
|
||||
min-height: 351px;
|
||||
width: 67%;
|
||||
}
|
||||
|
||||
.send-test-email .ps-footer-content.float-right {
|
||||
width: 67%;
|
||||
}
|
||||
|
||||
.send-test-email .ps-footer-content .ps-step {
|
||||
padding: 15px 10px;
|
||||
}
|
||||
|
||||
.send-test-email .ps-screens-container {
|
||||
padding: 0 25px;
|
||||
}
|
||||
|
||||
.send-test-email .ps-blue-button {
|
||||
border: #485b87;
|
||||
background: #375caf;
|
||||
border-radius: 0px;
|
||||
line-height: 40px;
|
||||
width: 184px;
|
||||
}
|
||||
|
||||
.send-test-email .ps-blue-button:hover {
|
||||
background: #4c6fbd;
|
||||
border-color: #4c6fbd;
|
||||
}
|
||||
|
||||
.send-test-email .ps-blue-button span {
|
||||
vertical-align: middle;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.send-test-email .ps-success {
|
||||
font-weight: 600;
|
||||
font-size: 12px;
|
||||
display: inline-block;
|
||||
color: green;
|
||||
}
|
||||
|
||||
.send-test-email .ps-error {
|
||||
font-weight: 600;
|
||||
font-size: 12px;
|
||||
display: inline-block;
|
||||
color: red;
|
||||
}
|
||||
|
||||
.need-more-line::after {
|
||||
height: 491px !important;
|
||||
}
|
||||
|
||||
.ps-ste-clearfix::after {
|
||||
clear: both;
|
||||
display: table;
|
||||
content: '';
|
||||
}
|
||||
|
||||
|
||||
/*# This is auto generated css by webpack please don't change anything */
|
||||
/*# sourceMappingURL=app.css.map*/
|
||||
@@ -0,0 +1,63 @@
|
||||
( function( $ ) {
|
||||
$( document ).ready( function( $e ) {
|
||||
|
||||
$( document ).on( 'click', '.send-test-email .ps-next-button', function( e ) {
|
||||
e.preventDefault();
|
||||
|
||||
var $this = $( this );
|
||||
|
||||
$( '#when-button-clicked' ).addClass( 'is-active' ).css( 'display', 'block' );
|
||||
$( this ).attr( 'disabled', 'disabled' );
|
||||
|
||||
$( '.ps-line' ).removeClass( 'need-more-line' );
|
||||
$( '.ps-transcript' ).hide();
|
||||
|
||||
let security = $( '#security' ).val(),
|
||||
email = $( '#postman_test_options_test_email' ).val();
|
||||
|
||||
$.ajax( {
|
||||
url : ajaxurl,
|
||||
method : 'POST',
|
||||
data : {
|
||||
action : 'postman_send_test_email',
|
||||
security : security,
|
||||
email : email,
|
||||
},
|
||||
success : function( response ) {
|
||||
$( '.show-when-email-sent' ).css( 'display', 'block' );
|
||||
$( '#when-button-clicked' ).removeClass( 'is-active' ).css( 'display', 'none' );
|
||||
$this.removeAttr( 'disabled' );
|
||||
if ( ! response.success ) {
|
||||
var message = response.data.message;
|
||||
var icon = '<span class="dashicons dashicons-no-alt"></span>';
|
||||
$( '.send-test-email .ps-success' ).empty();
|
||||
$( '.send-test-email .ps-error' ).html( icon + message );
|
||||
|
||||
$( '#ps-transcript-container' ).hide();
|
||||
$( '#ps-show-transcript' ).hide();
|
||||
}
|
||||
|
||||
if ( response.success ) {
|
||||
var message = response.data.message;
|
||||
var icon = '<span class="dashicons dashicons-yes-alt"></span>';
|
||||
$( '.send-test-email .ps-error' ).empty();
|
||||
$( '.send-test-email .ps-success' ).html( icon + message );
|
||||
|
||||
$( '#ps-transcript-container' ).show();
|
||||
$( '#ps-show-transcript' ).show();
|
||||
|
||||
$( '.ps-transcript textarea' ).text( response.data.transcript );
|
||||
$( '.ps-ste-bm' ).addClass( 'birth-check' )
|
||||
}
|
||||
},
|
||||
} );
|
||||
} );
|
||||
|
||||
$( document ).on( 'click', '.send-test-email #ps-show-transcript', function( e ) {
|
||||
e.preventDefault();
|
||||
|
||||
$( '.ps-transcript' ).toggle();
|
||||
$( '.ps-line' ).toggleClass( 'need-more-line' );
|
||||
} );
|
||||
} );
|
||||
} )( jQuery );
|
||||
Reference in New Issue
Block a user