mailConfirmPopup.html 3.98 KB
Newer Older
Kim Gyeongeun committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88

<!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">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<!--meta http-equiv="X-UA-Compatible" content="IE=emulateIE7"-->
<meta name="keywords" content="">
<meta name="description" content="">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">

<title>メール内容確認</title>

<link rel="stylesheet" type="text/css" href="/em/css/style.css" media="all">
<link rel="stylesheet" type="text/css" href="/em/css/common.pop.css" media="all">
<link rel="stylesheet" type="text/css" href="/em/css/top.css" media="all">
<link rel="stylesheet" type="text/css" href="/em/css/enquete.css" media="all">
<link rel="stylesheet" type="text/css" href="/em/css/jquery.datepick.css" media="all">
	<script type="text/javascript" src="/em/js/common.js"></script>
<script type="text/javascript" src="/em/js/jquery-1.3.1.min.js"></script>
<script type="text/javascript" src="/em/js/jquery.dropdownPlain.js"></script>
<script type="text/javascript" src="/em/js/jquery.datepick.js"></script>
<script type="text/javascript" src="/em/js/jquery.datepick-ja.js"></script>

<div id="contents" style="width: 800px; padding-bottom: 0px; margin-top: 0px;">
<div id="contents_main">
<div id="breadcrumbsWrap">

</div><!--[ /breadcrumbsWrap ]-->
<div id="main" class="clearfix">


<h2 class="contents_title">メール内容確認</h2>

<div id="right_contents">


<h3 class="table_title">入力内容確認</h3>

##<div id="search">
<table border="0" cellspacing="5" cellpadding="0" class="stripe2 w600" style="word-wrap:break-word;word-break:break-all;">
<tr class="gray">
		<td  class="w160">ステータス</td>
		<td>
			#if($!mailRegistForm.status == 0)未配信
			#elseif($!mailRegistForm.status == 1)配信済
			#else 一時保存
			#end
		</td>
	</tr>
	<tr class="gray">
		<td class="w140">メール件名</td>
		<td class="w610">$!escape.html($!mailRegistForm.subject)</td>
	</tr>
	<tr class="gray">
		<td>配信先</td>
		<td>#if($!mailRegistForm.groupName)
				$!escape.html($!mailRegistForm.groupName)
			#else
				<font color="red">配信グループ削除されました。</font>
			#end
		</td>
	</tr>
	#if ($!mailRegistForm.sendType == "1")
	<tr class="gray">
		<td>アンケート名</td>
		<td>$!escape.html($!mailRegistForm.enqueteName)</td>
	</tr>
	#end
	<tr>
		<td>差出人名(From)</td>
		<td>$!mailRegistForm.sender</td>
	</tr>
	<tr class="gray">
		<td style="vertical-align:top">本文</td>
		<td>$!tools.newLineToBr($escape.html($!mailRegistForm.mailBody))</td>
	</tr>
	#if ($!mailRegistForm.sendType != "1")
	<tr>
		<td>配信対象</td>
		<td>
		#if ($!mailRegistForm.deliveryTargetType == "0")
			PC用のアドレスのみ
89
		#elseif ($!mailRegistForm.deliveryTargetType == "1")
Kim Gyeongeun committed
90
			携帯用のアドレスのみ
91 92
		#elseif ($!mailRegistForm.deliveryTargetType == "2")
			E-mail(メイン)、E-mail(サブ)
Kim Gyeongeun committed
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
		#end
		</td>
		<input type="hidden" name="deliveryTargetType" value="$!mailRegistForm.deliveryTargetType">
	</tr>
	#end
	<tr class="gray">
		<td  class="w140">配信方法</td>
		<td>
		#if ($!mailRegistForm.deliveryTargetMethod == "0")
			時間指定 &nbsp;&nbsp; $!mailRegistForm.deliveryDate $!mailRegistForm.deliveryHour:$!mailRegistForm.deliveryMin
		#else
			即時配信
		#end</td>
	</tr>

<!--
	<tr>
	<td align="center" colspan="2">
		<button class="button" onClick="window.close(); return false;">閉じる</button>&nbsp;&nbsp;&nbsp;
	</td>
	</tr>
-->

</table>
##</div>
	<br/>
	<div class="btn_area2" style="width:600px;">
		<button class="button" onclick="window.close(); return false;">閉じる</button>
	</div>
</div>
</div>
 </div>
</div>
</div>
</div>