国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > 綜合 > 正文

Email發送完全手冊

2024-07-21 02:24:35
字體:
來源:轉載
供稿:網友
1.用asp+發送簡單的mail
<% @page language="c#" %>
<% @import namespace="system.web.util" %>
<%
string strto = "[email protected]";
string strfrom = "[email protected]";
string strsubject = "asp發送mail簡單例子";

smtpmail.send(strfrom, strto, strsubject,"這僅僅是個簡單的文本mail");
response.write("email 已經發送成功");
%>
2.asp+發送html 格式的mail
請注意,這里用了另外的一種發送命令
<% @page language="c#" %>
<% @import namespace="system.web.util" %>
<%
mailmessage msgmail = new mailmessage();
msgmail.to = "[email protected]";
msgmail.cc = "[email protected]";
msgmail.from = "[email protected]";
msgmail.subject = "asp+發送html 格式的mail";
msgmail.bodyformat = mailformat.html;
string strbody = "<html><body><b>hello world</b>" +
" <font color="red">asp+</font></body></html>";
msgmail.body = strbody;
smtpmail.send(msgmail);
response.write("email 已經發送成功");
%>
3.asp+ 發送帶有 附件的email
<% @page language="c#" %>
<% @import namespace="system.web.util" %>
<%
mailmessage msgmail = new mailmessage();
msgmail.to = "[email protected]";
msgmail.from = "[email protected]";
msgmail.subject = "attachment test";
msgmail.bodyformat = mailformat.text;
msgmail.body = "check out the attachment!";
msgmail.attachments.add(new mailattachment("c:/temp/doufu.txt"));
smtpmail.send(msgmail);
response.write("email 已經發送成功");
%>

好了,看完這篇文章以后,您是不是對于email發送在asp+中的操作已經沒有問題了?哦!還有
問題,沒有關系,隨時留意本站的更新吧!
  • 本文來源于網頁設計愛好者web開發社區http://www.html.org.cn收集整理,歡迎訪問。
  • 發表評論 共有條評論
    用戶名: 密碼:
    驗證碼: 匿名發表
    主站蜘蛛池模板: 县级市| 漳浦县| 平江县| 黎平县| 白水县| 鄱阳县| 九龙县| 宁晋县| 阳曲县| 扎赉特旗| 平凉市| 高安市| 德州市| 东平县| 承德县| 昂仁县| 焦作市| 锦屏县| 新乡县| 天峻县| 蒙阴县| 延津县| 富源县| 昌平区| 五常市| 肃南| 娱乐| 车险| 平遥县| 志丹县| 额济纳旗| 云林县| 清镇市| 名山县| 青州市| 兰西县| 中西区| 黔南| 田东县| 北票市| 二连浩特市|