|
Posted by cj on April 13, 2005, 3:12 pm
Please log in for more thread options
If anyone can help me with this, I would reeeeally appreciate it:
I am trying to send an email that contains a 'webpage" within it. I
have seen this done a million times, like in the emails I get from
NetFlix and Jetblue, but I'm not able to figure this out on my own.
When I simply take my html code and copy it into the body of an email,
the email that I receive shows just the code, not any graphics. What's
the trick?
Thanks...
|
|
Posted by kaeli on April 13, 2005, 5:28 pm
Please log in for more thread options
cjacquet323@yahoo.com enlightened us with...
> If anyone can help me with this, I would reeeeally appreciate it:
>
> I am trying to send an email that contains a 'webpage" within it. I
> have seen this done a million times, like in the emails I get from
> NetFlix and Jetblue, but I'm not able to figure this out on my own.
> When I simply take my html code and copy it into the body of an email,
> the email that I receive shows just the code, not any graphics. What's
> the trick?
Are you setting the content type properly?
You have to tell the mail client that it is html and the client must be able
to receive html and it must actually BE html, not copied-and-pasted html
source.
If you copy and paste a "<" for example, it actually gets pasted as "<" in
the mail.
The whole copy and paste thing works different for different clients. For
example, I can easily copy and paste from MSIE into Outlook and retain
formatting, and I can go from Firefox to Firebird, but forget trying to do
that from Firefox to Outlook.
--
--
~kaeli~
Does the name Pavlov ring a bell?
http://www.ipwebdesign.net/wildAtHeart http://www.ipwebdesign.net/kaelisSpace
|
|
Posted by Adrienne on April 14, 2005, 8:06 am
Please log in for more thread options
> If anyone can help me with this, I would reeeeally appreciate it:
>
> I am trying to send an email that contains a 'webpage" within it. I
> have seen this done a million times, like in the emails I get from
> NetFlix and Jetblue, but I'm not able to figure this out on my own.
> When I simply take my html code and copy it into the body of an email,
> the email that I receive shows just the code, not any graphics. What's
> the trick?
>
> Thanks...
>
You might want to try something like GroupMail, which has a tab to do
what you want to do. The only thing you need to remember, is that you
have to use an absolute path for images, eg. <img
src="http://www.example.com/image.png">, just using <img src="image.png">
will not work.
Also realize there are a lot of people who dump HTML email into the trash
without even looking at it. I would be more inclined to make a plain
text email and with a link to the page you really want the person to see.
Addtionally, some email clients do not show images, like Pegasus Mail,
and some have an option to show images or not, MS Outlook has this, as
well as web based like Yahoo.
--
Adrienne Boswell
http://www.cavalcade-of-coding.info Please respond to the group so others can share
|
|
Posted by Benjamin Niemann on April 14, 2005, 9:34 am
Please log in for more thread options
cj wrote:
> If anyone can help me with this, I would reeeeally appreciate it:
>
> I am trying to send an email that contains a 'webpage" within it. I
> have seen this done a million times, like in the emails I get from
> NetFlix and Jetblue, but I'm not able to figure this out on my own.
> When I simply take my html code and copy it into the body of an email,
> the email that I receive shows just the code, not any graphics. What's
> the trick?
Are you talking about a single email that you compose with you MUA (Outlook,
Thunderbird, whatever)? Or about sending email from a program (PHP page,
cron script...).
A can't help you for the first case - never done it myself, never will.
In the second case, check if your programming language has support for
generating MIME messages - in the simplest case, just set the Content-Type
to text/html, but in more advanced cases you'll be happy, if you can use an
existing toolkit. Also checkout the multipart/alternative content-type to
provide a text-only fallback for recipents without or with disabled HTML
support in their MUA.
--
Benjamin Niemann
Email: pink at odahoda dot de
WWW: http://www.odahoda.de/
|
|
Posted by Els on April 14, 2005, 9:43 am
Please log in for more thread options
cj wrote:
> If anyone can help me with this, I would reeeeally appreciate it:
>
> I am trying to send an email that contains a 'webpage" within it. I
> have seen this done a million times, like in the emails I get from
> NetFlix and Jetblue, but I'm not able to figure this out on my own.
> When I simply take my html code and copy it into the body of an email,
> the email that I receive shows just the code, not any graphics. What's
> the trick?
>
> Thanks...
If you're using Outlook Express: you need to paste the code in the
code-view version of the email. If you have your email set to send
HTML email, you'll find three tabs at the bottom of your new email,
one of which has a name like 'source' or 'code' or something.
--
Els http://locusmeus.com/ Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
|
| Similar Threads | Posted | | HTML email the easy way | October 16, 2004, 12:41 pm |
| Test Message AA | November 23, 2006, 10:59 pm |
| Flashing message in an HTA | February 15, 2008, 9:33 am |
| html email displays as code | June 27, 2007, 4:19 pm |
| Tidy message prob | September 22, 2005, 11:19 am |
| Image links in message boards | July 29, 2005, 10:43 am |
| prepopulate outlook message from webpage | November 2, 2006, 2:14 pm |
| An error message... "Content is not allowed in prolog." | September 12, 2004, 3:27 am |
| Free Location-Aware Message for Web Sites | November 23, 2004, 5:41 am |
| Loading picture before the using java applet / progress bar or waiting message ? | October 8, 2004, 12:05 am |
|