📄 web_system_sendmail.asp
字号:
<!--#include file="../Include/Class_Conn.asp" -->
<!--#include file="../Include/Class_Main.asp" -->
<!--#include file="Web_Session.asp" -->
<!--#include file="../Include/Class_Pass.asp" -->
<%
Dim Action,Comid,PageNo
Dim TypeId,TypeName,News
'//检测是否跨站
'Call Check_url()
'//检测管理员是否有权限操作该页面
If Instr(1,Session("Web_Power"),"192") <= 0 Then
Call CloseDB()
Response.write "对不起!您没有访问该页面的权限..."
Response.End()
End If
Action = Replace_text(request("action"))
Select Case Action
Case "edit"
Call Edit_Submit() '//跳转到函数
End Select
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script language="javascript">
<!--
function CheckForm()
{
document.form1.content.value=document.form1.doc_html.value;
return true
}
//-->
</script>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新闻类别</title>
<link href="../CSS/css.css" rel="stylesheet" type="text/css">
</head>
<body leftmargin="0" topmargin="0">
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="5"></td>
</tr>
<tr>
<td height="25" bgcolor="fb7a03"> <font color="#FFFFFF">::<strong>群发邮件</strong></font></td>
</tr>
<tr>
<td height="10"></td>
</tr>
</table>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="5"></td>
</tr>
</table>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="1">
<tr>
<td align="left"> <table width="100%" border="0" align="left" cellpadding="0" cellspacing="1" bgcolor="eff0eb">
<tr>
<td bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="1" cellpadding="4">
<form action="?action=edit" method="post" name="form1">
<tr bgcolor="eff0eb">
<td width="80" height="25" align="right" bgcolor="eff0eb">收件会员:</td>
<td bgcolor="eff0eb">
<select name="usertype" style="width:100px;">
<option value="person" selected>全部个人会员</option>
<option value="company">全部企业会员</option>
<option value="school">全部院校会员</option>
</select> </td>
</tr>
<tr bgcolor="eff0eb">
<td width="80" height="25" align="right" bgcolor="eff0eb">邮件标题:</td>
<td bgcolor="eff0eb"><input name="title" type="text" id="title" size="40" maxlength="50" value="<%= "您好,我们是"&Cls_WebName %>">
</td>
</tr>
<tr bgcolor="eff0eb">
<td width="80" height="25" align="right" bgcolor="eff0eb">内
容:</td>
<td bgcolor="eff0eb">
<iframe ID="eWebEditor1" src="Web_Editor/ewebeditor.asp?id=n_content&style=standard" frameborder="0" scrolling="no" width="90%" HEIGHT="300"></iframe> </td>
</tr>
<tr bgcolor="eff0eb">
<td width="80" height="25" align="right" bgcolor="eff0eb"> </td>
<td bgcolor="eff0eb"><input type="submit" name="Submit" value="发送邮件">
<input name="n_content" type="hidden" id="n_content">
</td>
</tr>
</form>
</table></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
<%
Sub Edit_Submit() '发送邮件
UserType = request("UserType")
Title = Replace_text(request("Title"))
Memo = Replace_text(request("n_Content"))
Select Case UserType
Case "person":
SQL = "Select UserEmail From [pH_Person_Base]"
Case "company":
SQL = "Select Email From [pH_Company_Base]"
Case "school":
SQL = "Select Email From [pH_School_Base]"
End Select
Set Rs = Conn.Execute(SQL)
While Not Rs.Eof
'查找会员的数据
Email = Rs(0)
'发送邮件
Call SendEmail(Email,Memo,Title)
Rs.Movenext
Wend
Rs.Close
Response.write "<script language=JavaScript>alert('邮件发送成功!');history.back(-1);</script>"
End Sub
Call CloseDB()
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -