MST1140.tpl
3.61 KB
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
89
90
91
92
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
<DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="Microsoft FrontPage 4.0">
<META http-equiv="Content-Type" content="text/html; charset=EUC-JP">
<META http-equiv="Content-Style-Type" content="text/css">
<link href="./css/style.css" rel="stylesheet" type="text/css">
<TITLE>め〜るNiポン!</TITLE>
<script type="text/javascript" src="./include/input_chk.js" charset="EUC-JP"></script>
<script>
{literal}
function Disp_List(){
if (confirm("入力内容は破棄してユーザー情報一覧画面に戻ります\nよろしいですか?")){
document.frm.action = "MST1100.php";
document.frm.method = "POST";
document.frm.submit();
return;
}
}
function Send_Select(){
document.frm.action = "MST1141.php";
document.frm.method = "POST";
document.frm.submit();
}
function Mail_Send(){
if(!document.frm.Send_User.value){
window.alert("送信先を選択して下さい");
return false;
}
if (confirm("この内容で情報を配信しますか?")){
document.frm.action="MST1142.php";
document.frm.enctype="multipart/form-data";
document.frm.method = "POST";
document.frm.submit();
}
}
{/literal}
</script>
</HEAD>
<BODY bgcolor="White">
<FORM name="frm" enctype="multipart/form-data" method="post">
<!-- ヘッダー表示 -->
{include file='header.tpl'}
<!-- メニュー表示 -->
{include file='menu.tpl'}
<table width="100%" border="0">
<tr>
<th><B><font color=blue size=5>テストメール配信</font></B></th>
</tr>
</table>
<hr />
<TABLE border="0" width="100%">
<TR>
<TD align="center">
<INPUT type="button" name="btnBack" value="一覧へ戻る" onClick="location='MST1100.php'"><BR><BR>
</TD>
</TR>
<tr>
<td align="center">
<FONT size="2" color=#FF0000><b>*<FONT size="2">件名・本文の一部は修正出来ません。<br>テストメール配信についてはポイントの消費はありません</b></FONT>
</td>
</tr>
<TR>
<TD align="center">
<TABLE border=1 bordercolor="#008080" width="650">
<TR>
<TD bgcolor="#FFCC99"><B><FONT size="2" color=#FF0000>*</FONT><FONT size="2">送信先</FONT></B></TD>
<TD>
<TABLE width="100%">
<TR>
<TD width="50%" align="left" >{$Send_List}</TD>
<TD width="50%" align="right"><INPUT type="button" name="btnSelect" value="送信先の選択をする" onClick="Send_Select();"></TD>
</TR>
</TABLE>
</TD>
</TR>
<TR>
<TD bgcolor="#FFCC99"><B><FONT size="2" color=#FF0000>*</FONT><FONT size="2">送信先機種</FONT></B></TD>
<TD>
<input name="SendType" type="radio" value="0" {$TypeChk[0]}>両方
<input name="SendType" type="radio" value="1" {$TypeChk[1]}>携帯のみ
<input name="SendType" type="radio" value="2" {$TypeChk[2]}>PCのみ
</TD>
</TR>
<TR>
<TD bgcolor="#FFCC99"><B><FONT size="2" color=#FF0000>*</FONT><FONT size="2">件名</FONT></B></TD>
<TD><INPUT size="30" maxlength="28" type="text" name="kenmei" value="め〜るNiポン送信確認メール" readonly>
</TR>
<TR>
<TD bgcolor="#FFCC99"><B><FONT size="2" color=#FF0000>*</FONT><FONT size="2" class="space">本文</FONT></B></TD>
<TD>
※このメールはめ〜るNiポンからの送信確認メールです。<BR>
<TEXTAREA rows="2" cols="60" name="txtMemo">{$txtMemo}</TEXTAREA><BR>
</TD>
</TR>
</TABLE>
</TD>
</TR>
<TR>
<TD align="center">
<p>
<FONT size="2"><B>↓情報を配信する場合はこのボタンを押してください↓<br></B></FONT>
<INPUT type="button" name="btnSend" value="配信する" onClick="JavaScript:Mail_Send();" style="padding:4px 20px 4px 20px; ">
</p>
</TD>
</TR>
</TABLE>
<input type="hidden" name="Send_User" value="{$Send_User}" />
<!-- フッター表示 -->
{include file='footer.tpl'}
</FORM>
</BODY>
</HTML>