예제 #1
0
파일: auto.class.php 프로젝트: fulldump/8
 public function getOriginal()
 {
     if ($this->row['Original'] == 0) {
         return null;
     } else {
         return EmailerCurrent::ROW($this->row['Original']);
     }
 }
예제 #2
0
파일: save_email.php 프로젝트: fulldump/8
<?php

EmailerCurrent::ROW($_POST['id'])->setHTML($_POST['html']);
예제 #3
0
파일: preview.php 프로젝트: fulldump/8
<!DOCTYPE HTML>
<html lang="ES">
	<head>
		<meta http-equiv="Content-Type" CONTENT="text/html; charset=UTF-8">
		<title>Email preview</title>
		<meta name="keywords" content="">
		<meta name="description" content="">
	</head>
	<body>
<?php 
$email_id = $_GET['email_id'];
$history_id = $_GET['history'];
$email = EmailerCurrent::ROW($email_id);
if (null != $email) {
    echo $email->getHTML();
}
?>
	</body>
</html>