A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Express Email Newsgroup » Outlook Express
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

OE6 inserts foreign characters into HTML Sig file. Why? Code shown



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old January 16th 07, 09:00 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Mike
external usenet poster
 
Posts: 332
Default OE6 inserts foreign characters into HTML Sig file. Why? Code shown

I just finished writing an Outlook Express 6 HTML signature file. The
problematic (relevant) portion of the code immediately follows:

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META http-equiv=Content-Type content="text/html; charset=windows-1252"
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=#ffffff
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
Sincerely, BRBRMike

When I run this code through IE7, the output is fine. However, when I run
the code through Outlook Express 6 and produce a signature within an email,
the beginning of the email looks like this (notice the characters preceding
"Sincerely"):

 Sincerely,

Mike

When I look back at the source code produced (compiled?) by the email
program, it shows me this:

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META http-equiv=Content-Type content="text/html; charset=windows-1252"
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=#ffffff
DIV /DIV
DIV
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE

Where did the (DIV /DIVDIV) come from? Why did it get added and how
can I stop it? It's a pain in the neck to keep removing the funny characters
 from my salutation line.

Any help provided will be much appreciated.

--
Sincerely,

Mike
Ads
  #2  
Old January 16th 07, 09:04 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Bruce Hagen
external usenet poster
 
Posts: 10,210
Default OE6 inserts foreign characters into HTML Sig file. Why? Code shown

How are you creating the sig?

Note: HTML Signatures must be less than 4KB.

Open a New Message window and create your signature. (Insert graphic &
text). Click the Source Tab. (View | Source Edit if not already checked).
Highlight the entire source code and copy / paste into Notepad. File | Save
As and in the File Name field, save as an htm file, (i.e. Sig1.htm). It will
be saved to My Documents by default. Go to Tools | Options | Signatures.
Click: File | Browse and Insert your saved signature | Apply. You can rename
it now if you wish.

Of course, if the recipient is reading in Plain Text, they won't see it.
--
Bruce Hagen
MS-MVP Outlook Express
~IB-CA~

"Mike" wrote in message
...
I just finished writing an Outlook Express 6 HTML signature file. The
problematic (relevant) portion of the code immediately follows:

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META http-equiv=Content-Type content="text/html; charset=windows-1252"
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=#ffffff
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
Sincerely, BRBRMike

When I run this code through IE7, the output is fine. However, when I run
the code through Outlook Express 6 and produce a signature within an
email,
the beginning of the email looks like this (notice the characters
preceding
"Sincerely"):

 Sincerely,

Mike

When I look back at the source code produced (compiled?) by the email
program, it shows me this:

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META http-equiv=Content-Type content="text/html; charset=windows-1252"
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=#ffffff
DIV /DIV
DIV
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE

Where did the (DIV /DIVDIV) come from? Why did it get added and
how
can I stop it? It's a pain in the neck to keep removing the funny
characters
 from my salutation line.

Any help provided will be much appreciated.

--
Sincerely,

Mike


  #3  
Old January 17th 07, 12:47 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Steve Cochran
external usenet poster
 
Posts: 2,353
Default OE6 inserts foreign characters into HTML Sig file. Why? Code shown

You can't have a STYLE element in the BODY. The HTML is messed up.

All you need is:

HTML
BODY
Sincerely,BRBR
Mike
/BODY
/HTML

I don't know what you are composing with, but keep it simple as the above.
Just copy that into a new Notepad window and then edit it and save it as an
htm file and then use that for the signature file.

steve

"Mike" wrote in message
...
I just finished writing an Outlook Express 6 HTML signature file. The
problematic (relevant) portion of the code immediately follows:

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META http-equiv=Content-Type content="text/html; charset=windows-1252"
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=#ffffff
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
Sincerely, BRBRMike

When I run this code through IE7, the output is fine. However, when I run
the code through Outlook Express 6 and produce a signature within an
email,
the beginning of the email looks like this (notice the characters
preceding
"Sincerely"):

 Sincerely,

Mike

When I look back at the source code produced (compiled?) by the email
program, it shows me this:

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META http-equiv=Content-Type content="text/html; charset=windows-1252"
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=#ffffff
DIV /DIV
DIV
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE

Where did the (DIV /DIVDIV) come from? Why did it get added and
how
can I stop it? It's a pain in the neck to keep removing the funny
characters
 from my salutation line.

Any help provided will be much appreciated.

--
Sincerely,

Mike


  #4  
Old January 17th 07, 12:48 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Mike
external usenet poster
 
Posts: 332
Default OE6 inserts foreign characters into HTML Sig file. Why? Code s

Bruce,

Major thanks for your help with the Signature file. I tried everything you
recommended, except I didn't save each updated signature file to a new
notepad file. I Kept using the old file for corrections. Other than that, I
don't know what I did wrong; but, nonetheless, I thank you for your help, for
now it is doing what I want it to do.

Mike

--
Sincerely,

Mike


"Bruce Hagen" wrote:

How are you creating the sig?

Note: HTML Signatures must be less than 4KB.

Open a New Message window and create your signature. (Insert graphic &
text). Click the Source Tab. (View | Source Edit if not already checked).
Highlight the entire source code and copy / paste into Notepad. File | Save
As and in the File Name field, save as an htm file, (i.e. Sig1.htm). It will
be saved to My Documents by default. Go to Tools | Options | Signatures.
Click: File | Browse and Insert your saved signature | Apply. You can rename
it now if you wish.

Of course, if the recipient is reading in Plain Text, they won't see it.
--
Bruce Hagen
MS-MVP Outlook Express
~IB-CA~

"Mike" wrote in message
...
I just finished writing an Outlook Express 6 HTML signature file. The
problematic (relevant) portion of the code immediately follows:

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META http-equiv=Content-Type content="text/html; charset=windows-1252"
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=#ffffff
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
Sincerely, BRBRMike

When I run this code through IE7, the output is fine. However, when I run
the code through Outlook Express 6 and produce a signature within an
email,
the beginning of the email looks like this (notice the characters
preceding
"Sincerely"):

 Sincerely,

Mike

When I look back at the source code produced (compiled?) by the email
program, it shows me this:

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META http-equiv=Content-Type content="text/html; charset=windows-1252"
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=#ffffff
DIV /DIV
DIV
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE

Where did the (DIV /DIVDIV) come from? Why did it get added and
how
can I stop it? It's a pain in the neck to keep removing the funny
characters
 from my salutation line.

Any help provided will be much appreciated.

--
Sincerely,

Mike



  #5  
Old January 17th 07, 01:34 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Bruce Hagen
external usenet poster
 
Posts: 10,210
Default OE6 inserts foreign characters into HTML Sig file. Why? Code s

Well, whatever worked, you're welcome. s.
--
Bruce Hagen
MS-MVP Outlook Express
~IB-CA~

"Mike" wrote in message
...
Bruce,

Major thanks for your help with the Signature file. I tried everything
you
recommended, except I didn't save each updated signature file to a new
notepad file. I Kept using the old file for corrections. Other than that,
I
don't know what I did wrong; but, nonetheless, I thank you for your help,
for
now it is doing what I want it to do.

Mike

--
Sincerely,

Mike


"Bruce Hagen" wrote:

How are you creating the sig?

Note: HTML Signatures must be less than 4KB.

Open a New Message window and create your signature. (Insert graphic &
text). Click the Source Tab. (View | Source Edit if not already checked).
Highlight the entire source code and copy / paste into Notepad. File |
Save
As and in the File Name field, save as an htm file, (i.e. Sig1.htm). It
will
be saved to My Documents by default. Go to Tools | Options | Signatures.
Click: File | Browse and Insert your saved signature | Apply. You can
rename
it now if you wish.

Of course, if the recipient is reading in Plain Text, they won't see it.
--
Bruce Hagen
MS-MVP Outlook Express
~IB-CA~

"Mike" wrote in message
...
I just finished writing an Outlook Express 6 HTML signature file. The
problematic (relevant) portion of the code immediately follows:

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META http-equiv=Content-Type content="text/html;
charset=windows-1252"
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=#ffffff
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
Sincerely, BRBRMike

When I run this code through IE7, the output is fine. However, when I
run
the code through Outlook Express 6 and produce a signature within an
email,
the beginning of the email looks like this (notice the characters
preceding
"Sincerely"):

 Sincerely,

Mike

When I look back at the source code produced (compiled?) by the email
program, it shows me this:

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META http-equiv=Content-Type content="text/html;
charset=windows-1252"
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=#ffffff
DIV /DIV
DIV
META content="MSHTML 6.00.5730.11" name=GENERATOR
STYLE/STYLE

Where did the (DIV /DIVDIV) come from? Why did it get added
and
how
can I stop it? It's a pain in the neck to keep removing the funny
characters
 from my salutation line.

Any help provided will be much appreciated.

--
Sincerely,

Mike




  #6  
Old August 10th 07, 07:34 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Fernando de Bruyn
external usenet poster
 
Posts: 1
Default OE6 inserts foreign characters into HTML Sig file. WHY?!?

Can somebody please help me before I break my keyboard. This signature problem
is driving me crazy. I have exactly the same problem as Mike, and I have
tried
everything written in this thread, nothing helps. I changed my signature to
as
simple as possible, saved it as a htm file, and still exactly the same
problem of
that weird foreign characters in the beginning of the mail. It adds the
following
characters to the mail.

DIV

Why the hell does it do that? I tried basically everything I can think of,
read up
as much as possible, it just looks like a bug to me. This is how my html
document
looks like:

HTML
BODY
Fernando de Bruyn
/BODY
/HTML

Any help would be greatly appriciated. Thanks in advance
Fernando de Bruyn
  #7  
Old August 11th 07, 12:33 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Michael Santovec
external usenet poster
 
Posts: 2,875
Default OE6 inserts foreign characters into HTML Sig file. WHY?!?

I don't know whose problem you are referring to. So we'll just start
from the beginning.

Do NOT use Word to create a signature. Use Notepad. Word adds all
sorts of garbage. Open your saved signature in Notepad to see what it
looks like.

Even your example has more than it should. Your signature is not a
stand-alone document. It will be inserted into one. So the HTML and
BODY tags don't apply.

In fact, your signature could be as little as

Fernando de Bruyn

If you like, you can add font tags to change the size, color, font,
etc., such as

FONT face=Billboard color=#ff0000 size=5Fernando de Bruyn/FONT/DIV

Also, In OE5+ you should use "Western European (ISO)" for Encoding.
Places to check this:
- Tools, Options, Send, International
- Tools, Options, Read, Font
- Tools, Options, Read, International
- When composing a message, look in Format, Encoding

--

Mike - http://pages.prodigy.net/michael_santovec/techhelp.htm


"Fernando de Bruyn" Fernando de wrote
in message ...
Can somebody please help me before I break my keyboard. This
signature problem
is driving me crazy. I have exactly the same problem as Mike, and I
have
tried
everything written in this thread, nothing helps. I changed my
signature to
as
simple as possible, saved it as a htm file, and still exactly the same
problem of
that weird foreign characters in the beginning of the mail. It adds
the
following
characters to the mail.

DIV

Why the hell does it do that? I tried basically everything I can
think of,
read up
as much as possible, it just looks like a bug to me. This is how my
html
document
looks like:

HTML
BODY
Fernando de Bruyn
/BODY
/HTML

Any help would be greatly appriciated. Thanks in advance
Fernando de Bruyn



  #8  
Old August 11th 07, 01:04 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Ron Sommer
external usenet poster
 
Posts: 1,463
Default OE6 inserts foreign characters into HTML Sig file. WHY?!?

If you have the closing /DIV tag include the DIV tag.
DIVFONT face=Billboard color=#ff0000 size=5Fernando de
Bruyn/FONT/DIV
--
Ronald Sommer

"Michael Santovec" wrote in message
...
:I don't know whose problem you are referring to. So we'll just start
: from the beginning.
:
: Do NOT use Word to create a signature. Use Notepad. Word adds all
: sorts of garbage. Open your saved signature in Notepad to see what it
: looks like.
:
: Even your example has more than it should. Your signature is not a
: stand-alone document. It will be inserted into one. So the HTML and
: BODY tags don't apply.
:
: In fact, your signature could be as little as
:
: Fernando de Bruyn
:
: If you like, you can add font tags to change the size, color, font,
: etc., such as
:
: FONT face=Billboard color=#ff0000 size=5Fernando de Bruyn/FONT/DIV
:
: Also, In OE5+ you should use "Western European (ISO)" for Encoding.
: Places to check this:
: - Tools, Options, Send, International
: - Tools, Options, Read, Font
: - Tools, Options, Read, International
: - When composing a message, look in Format, Encoding
:
: --
:
: Mike - http://pages.prodigy.net/michael_santovec/techhelp.htm
:
:
: "Fernando de Bruyn" Fernando de wrote
: in message ...
: Can somebody please help me before I break my keyboard. This
: signature problem
: is driving me crazy. I have exactly the same problem as Mike, and I
: have
: tried
: everything written in this thread, nothing helps. I changed my
: signature to
: as
: simple as possible, saved it as a htm file, and still exactly the same
: problem of
: that weird foreign characters in the beginning of the mail. It adds
: the
: following
: characters to the mail.
:
: DIV
:
: Why the hell does it do that? I tried basically everything I can
: think of,
: read up
: as much as possible, it just looks like a bug to me. This is how my
: html
: document
: looks like:
:
: HTML
: BODY
: Fernando de Bruyn
: /BODY
: /HTML
:
: Any help would be greatly appriciated. Thanks in advance
: Fernando de Bruyn
:
:

  #10  
Old August 13th 07, 07:50 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Fernando de Bruyn[_2_]
external usenet poster
 
Posts: 3
Default OE6 inserts foreign characters into HTML Sig file. WHY?!?

Okay, sorry, I thought you could see the whole thread. Let me explain
my problem from the beginning. I want to add a html signature to my
Outlook Express 6.0 mail. I create a HTML document sig1.html with the
following content:

HTML
BODYFernando de Bruyn/BODY
/HTML

As you can see, it is a very simple html document, nothing fancy, no font,
etc. I made it this simple on purpose to see if it would work. Anyway,
I go through the normal procedure of adding a signture, select the HTML
document, accept, etc. Now, I try to send a new mail, and it adds my
newly created signature, BUT, it also adds a couple of weird characters
to the beginning of the mail. It looks like this:

 Fernando de Bruyn

The source of the newly created email looks like this:

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META http-equiv=Content-Type content="text/html; charset=iso-8859-1"
META content="MSHTML 6.00.6000.16441" name=GENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=#ffffff
DIVFONT face=Arial size=2/FONT /DIV
DIV Fernando de Bruyn /DIV/BODY/HTML

I have no idea why Outlook Express is adding the  to the beggining of
my signature, and I want it out. Can anybody please help me?

Thanks in advance,
Fernando


"Michael Santovec" wrote:

I don't know whose problem you are referring to. So we'll just start
from the beginning.

Do NOT use Word to create a signature. Use Notepad. Word adds all
sorts of garbage. Open your saved signature in Notepad to see what it
looks like.

Even your example has more than it should. Your signature is not a
stand-alone document. It will be inserted into one. So the HTML and
BODY tags don't apply.

In fact, your signature could be as little as

Fernando de Bruyn

If you like, you can add font tags to change the size, color, font,
etc., such as

FONT face=Billboard color=#ff0000 size=5Fernando de Bruyn/FONT/DIV

Also, In OE5+ you should use "Western European (ISO)" for Encoding.
Places to check this:
- Tools, Options, Send, International
- Tools, Options, Read, Font
- Tools, Options, Read, International
- When composing a message, look in Format, Encoding

--

Mike - http://pages.prodigy.net/michael_santovec/techhelp.htm


"Fernando de Bruyn" Fernando de wrote
in message ...
Can somebody please help me before I break my keyboard. This
signature problem
is driving me crazy. I have exactly the same problem as Mike, and I
have
tried
everything written in this thread, nothing helps. I changed my
signature to
as
simple as possible, saved it as a htm file, and still exactly the same
problem of
that weird foreign characters in the beginning of the mail. It adds
the
following
characters to the mail.

DIV

Why the hell does it do that? I tried basically everything I can
think of,
read up
as much as possible, it just looks like a bug to me. This is how my
html
document
looks like:

HTML
BODY
Fernando de Bruyn
/BODY
/HTML

Any help would be greatly appriciated. Thanks in advance
Fernando de Bruyn




 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
HTML emails - messy code Vix Outlook - General Queries 1 January 12th 07 02:48 PM
HTML Sig Files Paul D Outlook Express 8 October 4th 06 01:37 PM
Outlook 2003 hang with Attachment file name with Chinese characters Elton Seng Yan Thung Outlook - General Queries 0 September 2nd 06 04:19 AM
Mail received as raw HTML code Bardo Outlook - General Queries 0 May 18th 06 05:07 PM
Reply To, insert html code Joshua Outlook and VBA 2 April 26th 06 04:53 PM


All times are GMT +1. The time now is 04:23 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.