Microsoft KB Archive/169286: Difference between revisions

From BetaArchive Wiki
(importing KB archive)
 
m (Text replacement - """ to """)
 
(2 intermediate revisions by the same user not shown)
Line 44: Line 44:
== SYMPTOMS ==
== SYMPTOMS ==


When clicking an HTML link containing a "mailto:" tag with no delivery information, Microsoft Outlook 97 will insert a slash (/) in the To field of the e-mail message.
When clicking an HTML link containing a "mailto:" tag with no delivery information, Microsoft Outlook 97 will insert a slash (/) in the To field of the e-mail message.


</div>
</div>
Line 53: Line 53:
To open an Outlook e-mail message containing no delivery information from an HTML link, you must insert a null value in the HTML mailto: tag.<br />
To open an Outlook e-mail message containing no delivery information from an HTML link, you must insert a null value in the HTML mailto: tag.<br />
<br />
<br />
Insert a null value (%20) in the HTML &quot;mailto:&quot; tag as follows:
Insert a null value (%20) in the HTML "mailto:" tag as follows:
<div class="indent">
<div class="indent">


&lt;a href=&quot;mailto:%20&quot;&gt;SEND E-MAIL&lt;/a&gt;
<a href="mailto:%20">SEND E-MAIL</a>




Line 70: Line 70:
<ol>
<ol>
<li><p>In NotePad, create and save a file named Testmail.htm with the following HTML code:</p>
<li><p>In NotePad, create and save a file named Testmail.htm with the following HTML code:</p>
<pre class="codesample">      &lt;HTML&gt;
<pre class="codesample">      <HTML>
       &lt;HEAD&gt;
       <HEAD>
       &lt;TITLE&gt;Test Mail&lt;/TITLE&gt;
       <TITLE>Test Mail</TITLE>
       &lt;/HEAD&gt;
       </HEAD>
       &lt;BODY&gt;
       <BODY>
       &lt;a href=&quot;mailto:&quot;&gt;SEND E-MAIL&lt;/a&gt;
       <a href="mailto:">SEND E-MAIL</a>
       &lt;/BODY&gt;
       </BODY>
       &lt;/HTML&gt;
       </HTML>
                         </pre></li>
                         </pre></li>
<li>Double-click the Testmail.htm file to open it in Microsoft Internet Explorer.</li>
<li>Double-click the Testmail.htm file to open it in Microsoft Internet Explorer.</li>

Latest revision as of 11:04, 21 July 2020

Article ID: 169286

Article Last Modified on 1/19/2007



APPLIES TO

  • Microsoft Outlook 97 Standard Edition



This article was previously published under Q169286

SYMPTOMS

When clicking an HTML link containing a "mailto:" tag with no delivery information, Microsoft Outlook 97 will insert a slash (/) in the To field of the e-mail message.

RESOLUTION

To open an Outlook e-mail message containing no delivery information from an HTML link, you must insert a null value in the HTML mailto: tag.

Insert a null value (%20) in the HTML "mailto:" tag as follows:

<a href="mailto:%20">SEND E-MAIL</a>


MORE INFORMATION

Steps to Reproduce Problem

  1. In NotePad, create and save a file named Testmail.htm with the following HTML code:

          <HTML>
          <HEAD>
          <TITLE>Test Mail</TITLE>
          </HEAD>
          <BODY>
          <a href="mailto:">SEND E-MAIL</a>
          </BODY>
          </HTML>
                            
  2. Double-click the Testmail.htm file to open it in Microsoft Internet Explorer.
  3. Click the SEND E-MAIL link.

RESULT: A new e-mail message is opened in Outlook containing a slash (/) in the To field.

Keywords: kbcode kbhowto KB169286