File: /var/www/html/www.winghung.com/wp-content/plugins/conversational-forms/classes/email/preview.php
<?php
/**
* Creates an email preview
*
* @package Caldera_Forms Modified by QuantumCloud
* @author Josh Pollock <Josh@CalderaWP.com>
* @license GPL-2.0+
* @link
* @copyright 2016 CalderaWP LLC
*/
class Qcformbuilder_Forms_Email_Preview extends Qcformbuilder_Forms_Email_Save {
/**
* @inheritdoc
*/
public function jsonSerialize() {
return array(
'headers' => $this->headers(),
'message' => $this->body(),
'content-type' => $this->content_type()
);
}
}