T
Trevor Lawrence
I should know the answer but I don't
I have a wepage (below) where I have set up an link to send an Email
The code is
<span class="red">From Webmaster</span><br />
Are you a club member who wants to receive the newsletter by email?<br/ >
If so:
<script type="text/javascript">writeem('ratec')</script><br />
(Please include your name)<br />
NOTE: All copies for 2009 are also available.
The function writeem is:
function writeem(ename){
/*********************************************************/
var text = 'Click Here to Email Me';
var subject = 'Response from RATEC site';
var body = 'Please enter your message here';
var eaddr = (ename=='tcl') ? 'tandcl' + '@' + 'homemail' + '.com.au'
: (ename=='ratec') ? 'webmaster' + '@' + 'ratec' + '.actbus' +
'.net'
: ' ';
document.write('<a onmouseover="window.status=\' \';return true;"'
+ 'title=' + text
+ ' href="mailto:' + eaddr
+ '?subject=' + subject
+ '&body=' + body + '">'
+ '<br><span style="color:black; background:#f5f5dc">' + text
+ '</span></a>');
}
/** END writeem **/
When this executes, the Outlook 2007 Startup Wizard starts. I use Outlook
Express, not Outlook 2007, so I don't want this to occur.
I use IE7 and Internet Options | Programs has E-mail set to Outlook Express.
How can I prevent the above code from invoking Outlook 2007 and force it to
use Outlook Express instead?
P.S. I stripped out the Javascript and used this
<a title=Click Here to Email Me
href="mailto:[email protected]?subject=Response from RATEC
site&body=Please enter your message here">Click Here to Email Me</a>
with the same result
I have a wepage (below) where I have set up an link to send an Email
The code is
<span class="red">From Webmaster</span><br />
Are you a club member who wants to receive the newsletter by email?<br/ >
If so:
<script type="text/javascript">writeem('ratec')</script><br />
(Please include your name)<br />
NOTE: All copies for 2009 are also available.
The function writeem is:
function writeem(ename){
/*********************************************************/
var text = 'Click Here to Email Me';
var subject = 'Response from RATEC site';
var body = 'Please enter your message here';
var eaddr = (ename=='tcl') ? 'tandcl' + '@' + 'homemail' + '.com.au'
: (ename=='ratec') ? 'webmaster' + '@' + 'ratec' + '.actbus' +
'.net'
: ' ';
document.write('<a onmouseover="window.status=\' \';return true;"'
+ 'title=' + text
+ ' href="mailto:' + eaddr
+ '?subject=' + subject
+ '&body=' + body + '">'
+ '<br><span style="color:black; background:#f5f5dc">' + text
+ '</span></a>');
}
/** END writeem **/
When this executes, the Outlook 2007 Startup Wizard starts. I use Outlook
Express, not Outlook 2007, so I don't want this to occur.
I use IE7 and Internet Options | Programs has E-mail set to Outlook Express.
How can I prevent the above code from invoking Outlook 2007 and force it to
use Outlook Express instead?
P.S. I stripped out the Javascript and used this
<a title=Click Here to Email Me
href="mailto:[email protected]?subject=Response from RATEC
site&body=Please enter your message here">Click Here to Email Me</a>
with the same result