|
 |
asp_web_howto thread: e-newsletter
Message #1 by "phannarith" <pnarith@h...> on Mon, 29 Jul 2002 04:46:03
|
|
I want to design a e-newsletter as my following idea:
As most of websites are currently providing, we can subscript to a weekly
newsletter, for example. We can choose in HTML or Text. When we choose
HTML, when the message raised in our mail box, it will have some picture,
bold text, link, or other format.
I want to design something like the above description. Every month, i will
send a e-newsletter directly to my staff's mailbox in my company with a
picture, bold text, link, etc.
For example, I did like this
In the hotmail editor, I wrote the following:
<html><head><title>E-newletter</title></head>
<body>
<h3>This is an example of e-newsletter</h3>
</body>
</html>
When i send it to someone e-mail, for example yahoo mail, it appeared like
what I wrote. In other words, it doesn't not interpreted like our browser.
I want to know how to do it???
Please provide me an idea as soon as possible. I really needs it
immediately
Best regards
Message #2 by "Aaron Fleming" <aaronf@w...> on Mon, 29 Jul 2002 10:08:22 -0400
|
|
Post your code - it sounds like you are sending text.
Use this to send HTML
<%
...
objMail.Body = "Insert HTML"
objMail.BodyFormat = 0
objMail.MailFormat = 0
...
%>
-----Original Message-----
From: phannarith [mailto:pnarith@h...]
Sent: Monday, July 29, 2002 12:46 AM
To: ASP Web HowTo
Subject: [asp_web_howto] e-newsletter
I want to design a e-newsletter as my following idea:
As most of websites are currently providing, we can subscript to a
weekly
newsletter, for example. We can choose in HTML or Text. When we choose
HTML, when the message raised in our mail box, it will have some
picture,
bold text, link, or other format.
I want to design something like the above description. Every month, i
will
send a e-newsletter directly to my staff's mailbox in my company with a
picture, bold text, link, etc.
For example, I did like this
In the hotmail editor, I wrote the following:
<html><head><title>E-newletter</title></head>
<body>
<h3>This is an example of e-newsletter</h3>
</body>
</html>
When i send it to someone e-mail, for example yahoo mail, it appeared
like
what I wrote. In other words, it doesn't not interpreted like our
browser.
I want to know how to do it???
Please provide me an idea as soon as possible. I really needs it
immediately
Best regards
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
Message #3 by "Tom Zhang" <tzhang@p...> on Tue, 30 Jul 2002 13:20:01
|
|
check out Microsoft CDO reference. It allows you to send HTML string
(.HTMLBody="<htm><body>my html</body></html>) or send a html file
(.CreateMHTMLBody "http://mywebsite/myapp/myhtml.htm"). Hope this helps.
Tom
> I want to design a e-newsletter as my following idea:
> As most of websites are currently providing, we can subscript to a
weekly
n> ewsletter, for example. We can choose in HTML or Text. When we choose
H> TML, when the message raised in our mail box, it will have some
picture,
b> old text, link, or other format.
> I want to design something like the above description. Every month, i
will
s> end a e-newsletter directly to my staff's mailbox in my company with a
p> icture, bold text, link, etc.
> For example, I did like this
> In the hotmail editor, I wrote the following:
> <html><head><title>E-newletter</title></head>
<> body>
<> h3>This is an example of e-newsletter</h3>
<> /body>
<> /html>
> When i send it to someone e-mail, for example yahoo mail, it appeared
like
w> hat I wrote. In other words, it doesn't not interpreted like our
browser.
> I want to know how to do it???
> Please provide me an idea as soon as possible. I really needs it
i> mmediately
> Best regards
|
|
 |