
The following only apply to IE's Outlook Express email client.
If you have an MSN account or similar, they may not work as all email clients are different. Some may have different commands to achieve these effects and others may not.
If you have say 5 or 6 people that you always send the same email to (example sending jokes) you can create a group email list. Then (in just one click) you can send everyone on that list the same email.
The Group should now appear in your 'Contacts' list. Now you can email everyone in that group by simply double-clicking the name. Now that you've got the hang of things, you should be able to work out how to add or remove people from the groups list.
Add a background image to your emails
You can use a large photo that fills the screen or a small image that will repeat (tile). Remember that photos can be extremely large files, so emails will take longer to send and receive.
Add background music to your emails
Don't pick a sound file that is too large, as this will take longer for the email to be received.
Insert images into your emails
When writing an email, you decide it would be nice to include a photo or funny image.
The other settings:-
Scrolling text in your email
It's important to master going into the raw HTML of your email, or you won't be able to do it ![]()
Click Source and you'll see the HTML code (HyperText Markup Language), which is the stuff webpages are made of. Clicking Edit returns you to normal email mode. The email code looks a bit messy at first, but don't let this put you off. In a new blank email, type in a few words. Click Source and look for your words in the code. Insert Marquee tags around the phrase:
<MARQUEE>Hello Viewers</MARQUEE>Click Preview then stand back and be amazed to see the text scroll across your screen.
Note: Marquee only used to work with Internet Explorer, but it now works in the latest Netscape, Firefox, Opera and similar browsers. Browsers that don't understand the Marquee command just see it as stationary text. You can alter the behavior, direction, speed and many other attributes. <MARQUEE behavior=alternate> will bounce back and forth endlessly (see next tip).
Scrolling images in your email
The Marquee command (see previous tip) will also work with images. Instead of putting words between the Marquee command, put an image. I've used an animated GIF image for extra effect.
Type the Marquee tags in manually as above, but put just 2 characters with a few spaces between it. Any characters will do. I've used 'x's here.
<MARQUEE behaviour=alternate>x x</MARQUEE>Then in 'Edit' mode, click the Marquee between the characters and the Marquee should stay selected (you may have to click a couple of times to select the text in the marquee). From the top menu, click Insert > Picture > Browse etc. and insert your image into it. You can now delete the characters as they were just markers.
Commands can be written in upper or lowercase. All the attributes are put in the first Marquee command and nothing in the closing Marquee. To alter the start direction you use the Direction attribute. The default is 'Left' if you omit this option.
Behaviour=alternate makes it go back and forth, is as you would expect.
To alter the scroll speed use the ScrollAmount attribute. This is the travel in pixels of each step of the scroll. Therefore, the higher the step travel, the faster the scroll will move.
Example:
<MARQUEE direction=right behaviour=alternate scrollamount=50>Your text or image goes here</MARQUEE>
Some fun with the Marquee command
Putting two Marquees back to back produces some interesting effects. Don't forget that Marquee is a Microsoft command (but works in the latest versions of Opera and Firefox) and it's only for fun emails.
Here is the code:
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TR>
<TD><FONT face=Arial color=#ffffff size=5><MARQUEE bgColor=#ff0000>Merry Xmas and A Happy New Year</MARQUEE></FONT></TD>
<TD><FONT face=Arial color=#ffffff size=5><MARQUEE direction=right bgColor=#0000ff>Merry Xmas and A Happy New Year</MARQUEE></FONT></TD>
</TR>
</TABLE>
Swipe your cursor over this code and save it. Create a test page "marquee.html" on your computer and paste it in. To use it in an email, enter the html of the email and paste it in there. One Marquee goes left and the other goes right. The text is the same in both. You need to put it into a table to make it work with some browsers. The whole lot is surrounded by font tags of your choice, or you can use inline styles if you know how to use them.
Even more fun with the Marquee command
The description is in the scrolling text (doesn't work in all browsers).
Here is the code:
<MARQUEE direction=up scrollamount=1 height=100 bgColor=#ffff00>Your text goes here</MARQUEE>
The 'scrollamount' is the speed. The 'width' and 'height' can be percentages or screen pixel values. The size can be made as large as you want. The 'bgColor' is the background colour. To alter the text colour and size, you need to surround the whole lot with font tags as in the previous example. The <br> tag can also be used to split up your text.