|
 |
asp_web_howto thread: Add an email link to a dynamically built .asp page
Message #1 by "Shawn Beasley" <datadriven80@h...> on Thu, 15 Nov 2001 22:14:06
|
|
I am having trouble adding a link to a dynamically built .asp page. I have
an Access database from which my asp page is retrieving information. How
can a get data from my Email field in my Access database to show as an
email link in my .asp page, bring up an email window with the appropriate
information in the "To..." field and have that email link change according
to the users selection? The database column name is Email and it contains
text (various email addresses like user@h...). My setup in my asp page
is as follows:
<B>Email:</B><br>
<FONT FACE="verdana, helvetica, sans-serif" SIZE="2">
"<a href='"mailto:"' <% strEmail %> '">Send mail</A>"'"
</FONT><BR><BR>
This just brings up an empty email message window and does not populate
the "To:" box with the appropriate email address. Please note that I have
established the necessary criteria for strEmail. I just think the above
code is inappropriate for what I am trying to accomplish. Any/all help is
greatly appreciated! Thanks,
Message #2 by "Alex Shiell, ITS, EC, SE" <alex.shiell@s...> on Fri, 16 Nov 2001 10:04:25 -0000
|
|
I think you may have too many quotes...
try <a href='mailto:<% strEmail %>'>Send mail</A>
-----Original Message-----
From: Shawn Beasley [mailto:datadriven80@h...]
Sent: 15 November 2001 22:14
To: ASP Web HowTo
Subject: [asp_web_howto] Add an email link to a dynamically built .asp
page
I am having trouble adding a link to a dynamically built .asp page. I have
an Access database from which my asp page is retrieving information. How
can a get data from my Email field in my Access database to show as an
email link in my .asp page, bring up an email window with the appropriate
information in the "To..." field and have that email link change according
to the users selection? The database column name is Email and it contains
text (various email addresses like user@h...). My setup in my asp page
is as follows:
<B>Email:</B><br>
<FONT FACE="verdana, helvetica, sans-serif" SIZE="2">
"<a href='"mailto:"' <% strEmail %> '">Send mail</A>"'"
</FONT><BR><BR>
This just brings up an empty email message window and does not populate
the "To:" box with the appropriate email address. Please note that I have
established the necessary criteria for strEmail. I just think the above
code is inappropriate for what I am trying to accomplish. Any/all help is
greatly appreciated! Thanks,
$subst('Email.Unsub')
________________________________________________________________________
Scottish Enterprise Network
http://www.scottish-enterprise.com
Headquarters Address & Contact Numbers
150 Broomielaw
5 Atlantic Quay
Glasgow
G2 8LU.
Tel: +44 (0) 141 248 2700.
Fax: +44 (0)141 221 3217
This message is sent in confidence for the addressee only.
It may contain legally privileged information. The contents are not to
be disclosed to anyone other than the addressee. Unauthorised recipients
are requested to preserve this confidentiality and to advise the sender
immediately of any error in transmission.
Message #3 by "Eric Van Camp" <eric@a...> on Fri, 16 Nov 2001 12:12:35 +0100
|
|
no no no this must be
<a href="mailto:<%=tremail%>">Send mail</a>
this should help!
-----Original Message-----
From: Alex Shiell, ITS, EC, SE [mailto:alex.shiell@s...]
Sent: vr november 16 2001 11:04
To: ASP Web HowTo
Subject: [asp_web_howto] RE: Add an email link to a dynamically built
.asp page
I think you may have too many quotes...
try <a href='mailto:<% strEmail %>'>Send mail</A>
-----Original Message-----
From: Shawn Beasley [mailto:datadriven80@h...]
Sent: 15 November 2001 22:14
To: ASP Web HowTo
Subject: [asp_web_howto] Add an email link to a dynamically built .asp
page
I am having trouble adding a link to a dynamically built .asp page. I have
an Access database from which my asp page is retrieving information. How
can a get data from my Email field in my Access database to show as an
email link in my .asp page, bring up an email window with the appropriate
information in the "To..." field and have that email link change according
to the users selection? The database column name is Email and it contains
text (various email addresses like user@h...). My setup in my asp page
is as follows:
<B>Email:</B><br>
<FONT FACE="verdana, helvetica, sans-serif" SIZE="2">
"<a href='"mailto:"' <% strEmail %> '">Send mail</A>"'"
</FONT><BR><BR>
This just brings up an empty email message window and does not populate
the "To:" box with the appropriate email address. Please note that I have
established the necessary criteria for strEmail. I just think the above
code is inappropriate for what I am trying to accomplish. Any/all help is
greatly appreciated! Thanks,
$subst('Email.Unsub')
________________________________________________________________________
Scottish Enterprise Network
http://www.scottish-enterprise.com
Headquarters Address & Contact Numbers
150 Broomielaw
5 Atlantic Quay
Glasgow
G2 8LU.
Tel: +44 (0) 141 248 2700.
Fax: +44 (0)141 221 3217
This message is sent in confidence for the addressee only.
It may contain legally privileged information. The contents are not to
be disclosed to anyone other than the addressee. Unauthorised recipients
are requested to preserve this confidentiality and to advise the sender
immediately of any error in transmission.
$subst('Email.Unsub')
Message #4 by "Alex Shiell, ITS, EC, SE" <alex.shiell@s...> on Fri, 16 Nov 2001 11:26:51 -0000
|
|
I didn't even notice he was missing the '='
-----Original Message-----
From: Eric Van Camp [mailto:eric@a...]
Sent: 16 November 2001 11:13
To: ASP Web HowTo
Subject: [asp_web_howto] RE: Add an email link to a dynamically built
.asp page
no no no this must be
<a href="mailto:<%=tremail%>">Send mail</a>
this should help!
-----Original Message-----
From: Alex Shiell, ITS, EC, SE [mailto:alex.shiell@s...]
Sent: vr november 16 2001 11:04
To: ASP Web HowTo
Subject: [asp_web_howto] RE: Add an email link to a dynamically built
.asp page
I think you may have too many quotes...
try <a href='mailto:<% strEmail %>'>Send mail</A>
-----Original Message-----
From: Shawn Beasley [mailto:datadriven80@h...]
Sent: 15 November 2001 22:14
To: ASP Web HowTo
Subject: [asp_web_howto] Add an email link to a dynamically built .asp
page
I am having trouble adding a link to a dynamically built .asp page. I have
an Access database from which my asp page is retrieving information. How
can a get data from my Email field in my Access database to show as an
email link in my .asp page, bring up an email window with the appropriate
information in the "To..." field and have that email link change according
to the users selection? The database column name is Email and it contains
text (various email addresses like user@h...). My setup in my asp page
is as follows:
<B>Email:</B><br>
<FONT FACE="verdana, helvetica, sans-serif" SIZE="2">
"<a href='"mailto:"' <% strEmail %> '">Send mail</A>"'"
</FONT><BR><BR>
This just brings up an empty email message window and does not populate
the "To:" box with the appropriate email address. Please note that I have
established the necessary criteria for strEmail. I just think the above
code is inappropriate for what I am trying to accomplish. Any/all help is
greatly appreciated! Thanks,
$subst('Email.Unsub')
________________________________________________________________________
Scottish Enterprise Network
http://www.scottish-enterprise.com
Headquarters Address & Contact Numbers
150 Broomielaw
5 Atlantic Quay
Glasgow
G2 8LU.
Tel: +44 (0) 141 248 2700.
Fax: +44 (0)141 221 3217
This message is sent in confidence for the addressee only.
It may contain legally privileged information. The contents are not to
be disclosed to anyone other than the addressee. Unauthorised recipients
are requested to preserve this confidentiality and to advise the sender
immediately of any error in transmission.
$subst('Email.Unsub')
$subst('Email.Unsub')
________________________________________________________________________
Scottish Enterprise Network
http://www.scottish-enterprise.com
Headquarters Address & Contact Numbers
150 Broomielaw
5 Atlantic Quay
Glasgow
G2 8LU.
Tel: +44 (0) 141 248 2700.
Fax: +44 (0)141 221 3217
This message is sent in confidence for the addressee only.
It may contain legally privileged information. The contents are not to
be disclosed to anyone other than the addressee. Unauthorised recipients
are requested to preserve this confidentiality and to advise the sender
immediately of any error in transmission.
Message #5 by "Eric Van Camp" <eric@a...> on Fri, 16 Nov 2001 12:42:58 +0100
|
|
sorry...
o no no this must be
<a href="mailto:<%=stremail%>">Send mail</a>
the "=" is the response.write ofcourse!
this should help!
-----Original Message-----
From: Eric Van Camp [mailto:eric@a...]
Sent: vr november 16 2001 12:13
To: ASP Web HowTo
Subject: [asp_web_howto] RE: Add an email link to a dynamically built
.asp page
no no no this must be
<a href="mailto:<%=tremail%>">Send mail</a>
this should help!
-----Original Message-----
From: Alex Shiell, ITS, EC, SE [mailto:alex.shiell@s...]
Sent: vr november 16 2001 11:04
To: ASP Web HowTo
Subject: [asp_web_howto] RE: Add an email link to a dynamically built
.asp page
I think you may have too many quotes...
try <a href='mailto:<% strEmail %>'>Send mail</A>
-----Original Message-----
From: Shawn Beasley [mailto:datadriven80@h...]
Sent: 15 November 2001 22:14
To: ASP Web HowTo
Subject: [asp_web_howto] Add an email link to a dynamically built .asp
page
I am having trouble adding a link to a dynamically built .asp page. I have
an Access database from which my asp page is retrieving information. How
can a get data from my Email field in my Access database to show as an
email link in my .asp page, bring up an email window with the appropriate
information in the "To..." field and have that email link change according
to the users selection? The database column name is Email and it contains
text (various email addresses like user@h...). My setup in my asp page
is as follows:
<B>Email:</B><br>
<FONT FACE="verdana, helvetica, sans-serif" SIZE="2">
"<a href='"mailto:"' <% strEmail %> '">Send mail</A>"'"
</FONT><BR><BR>
This just brings up an empty email message window and does not populate
the "To:" box with the appropriate email address. Please note that I have
established the necessary criteria for strEmail. I just think the above
code is inappropriate for what I am trying to accomplish. Any/all help is
greatly appreciated! Thanks,
$subst('Email.Unsub')
________________________________________________________________________
Scottish Enterprise Network
http://www.scottish-enterprise.com
Headquarters Address & Contact Numbers
150 Broomielaw
5 Atlantic Quay
Glasgow
G2 8LU.
Tel: +44 (0) 141 248 2700.
Fax: +44 (0)141 221 3217
This message is sent in confidence for the addressee only.
It may contain legally privileged information. The contents are not to
be disclosed to anyone other than the addressee. Unauthorised recipients
are requested to preserve this confidentiality and to advise the sender
immediately of any error in transmission.
$subst('Email.Unsub')
$subst('Email.Unsub')
Message #6 by "Shawn Beasley" <datadriven80@h...> on Fri, 16 Nov 2001 14:13:47 +0000
|
|
Thanks for the help Eric and Alex. To put it plainly, both of you had
valuable input. The correct syntax for the code is:
<a href = 'mailto: <%= strEmail %>'> Send mail </A>
Single quotes around the mailto tag (not double). I knew the = sign was
critical of the response.write statement. I guess I couldn't see the trees
for the forest! Thanks for your help,
Shawn
>From: "Eric Van Camp" <eric@a...>
>Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
>To: "ASP Web HowTo" <asp_web_howto@p...>
>Subject: [asp_web_howto] RE: Add an email link to a dynamically built .asp
> page
>Date: Fri, 16 Nov 2001 12:42:58 +0100
>
>sorry...
>o no no this must be
><a href="mailto:<%=stremail%>">Send mail</a>
>the "=" is the response.write ofcourse!
>this should help!
>
>-----Original Message-----
>From: Eric Van Camp [mailto:eric@a...]
>Sent: vr november 16 2001 12:13
>To: ASP Web HowTo
>Subject: [asp_web_howto] RE: Add an email link to a dynamically built
>.asp page
>
>
>no no no this must be
><a href="mailto:<%=tremail%>">Send mail</a>
>this should help!
>
>
>-----Original Message-----
>From: Alex Shiell, ITS, EC, SE [mailto:alex.shiell@s...]
>Sent: vr november 16 2001 11:04
>To: ASP Web HowTo
>Subject: [asp_web_howto] RE: Add an email link to a dynamically built
>.asp page
>
>
>I think you may have too many quotes...
>
>try <a href='mailto:<% strEmail %>'>Send mail</A>
>
>-----Original Message-----
>From: Shawn Beasley [mailto:datadriven80@h...]
>Sent: 15 November 2001 22:14
>To: ASP Web HowTo
>Subject: [asp_web_howto] Add an email link to a dynamically built .asp
>page
>
>
>I am having trouble adding a link to a dynamically built .asp page. I have
>an Access database from which my asp page is retrieving information. How
>can a get data from my Email field in my Access database to show as an
>email link in my .asp page, bring up an email window with the appropriate
>information in the "To..." field and have that email link change according
>to the users selection? The database column name is Email and it contains
>text (various email addresses like user@h...). My setup in my asp page
>is as follows:
>
><B>Email:</B><br>
><FONT FACE="verdana, helvetica, sans-serif" SIZE="2">
> "<a href='"mailto:"' <% strEmail %> '">Send mail</A>"'"
></FONT><BR><BR>
>
>This just brings up an empty email message window and does not populate
>the "To:" box with the appropriate email address. Please note that I have
>established the necessary criteria for strEmail. I just think the above
>code is inappropriate for what I am trying to accomplish. Any/all help is
>greatly appreciated! Thanks,
>
>$subst('Email.Unsub')
>
>________________________________________________________________________
>Scottish Enterprise Network
>http://www.scottish-enterprise.com
>
>Headquarters Address & Contact Numbers
>
>150 Broomielaw
>5 Atlantic Quay
>Glasgow
>G2 8LU.
>Tel: +44 (0) 141 248 2700.
>Fax: +44 (0)141 221 3217
>
> This message is sent in confidence for the addressee only.
>It may contain legally privileged information. The contents are not to
>be disclosed to anyone other than the addressee. Unauthorised recipients
>are requested to preserve this confidentiality and to advise the sender
>immediately of any error in transmission.
>
>
>
>$subst('Email.Unsub')
>
>
>$subst('Email.Unsub')
>
>
>$subst('Email.Unsub')
>
_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
Message #7 by "Alex Shiell, ITS, EC, SE" <alex.shiell@s...> on Fri, 16 Nov 2001 14:18:50 -0000
|
|
you can use single or double quotes for HTML attributes. The only situation
in which they would have to be single is if you were building a string
e.g. response.write "<a href = 'mailto:" & strEmail & "'> Send mail </A>"
but even then you can still put double quotes in
e.g. response.write "<a href = ""mailto:" & strEmail & """> Send mail </A>"
-----Original Message-----
From: Shawn Beasley [mailto:datadriven80@h...]
Sent: 16 November 2001 14:14
To: ASP Web HowTo
Subject: [asp_web_howto] RE: Add an email link to a dynamically built
.asp page
Thanks for the help Eric and Alex. To put it plainly, both of you had
valuable input. The correct syntax for the code is:
<a href = 'mailto: <%= strEmail %>'> Send mail </A>
Single quotes around the mailto tag (not double). I knew the = sign was
critical of the response.write statement. I guess I couldn't see the trees
for the forest! Thanks for your help,
Shawn
>From: "Eric Van Camp" <eric@a...>
>Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
>To: "ASP Web HowTo" <asp_web_howto@p...>
>Subject: [asp_web_howto] RE: Add an email link to a dynamically built .asp
> page
>Date: Fri, 16 Nov 2001 12:42:58 +0100
>
>sorry...
>o no no this must be
><a href="mailto:<%=stremail%>">Send mail</a>
>the "=" is the response.write ofcourse!
>this should help!
>
>-----Original Message-----
>From: Eric Van Camp [mailto:eric@a...]
>Sent: vr november 16 2001 12:13
>To: ASP Web HowTo
>Subject: [asp_web_howto] RE: Add an email link to a dynamically built
>.asp page
>
>
>no no no this must be
><a href="mailto:<%=tremail%>">Send mail</a>
>this should help!
>
>
>-----Original Message-----
>From: Alex Shiell, ITS, EC, SE [mailto:alex.shiell@s...]
>Sent: vr november 16 2001 11:04
>To: ASP Web HowTo
>Subject: [asp_web_howto] RE: Add an email link to a dynamically built
>.asp page
>
>
>I think you may have too many quotes...
>
>try <a href='mailto:<% strEmail %>'>Send mail</A>
>
>-----Original Message-----
>From: Shawn Beasley [mailto:datadriven80@h...]
>Sent: 15 November 2001 22:14
>To: ASP Web HowTo
>Subject: [asp_web_howto] Add an email link to a dynamically built .asp
>page
>
>
>I am having trouble adding a link to a dynamically built .asp page. I have
>an Access database from which my asp page is retrieving information. How
>can a get data from my Email field in my Access database to show as an
>email link in my .asp page, bring up an email window with the appropriate
>information in the "To..." field and have that email link change according
>to the users selection? The database column name is Email and it contains
>text (various email addresses like user@h...). My setup in my asp page
>is as follows:
>
><B>Email:</B><br>
><FONT FACE="verdana, helvetica, sans-serif" SIZE="2">
> "<a href='"mailto:"' <% strEmail %> '">Send mail</A>"'"
></FONT><BR><BR>
>
>This just brings up an empty email message window and does not populate
>the "To:" box with the appropriate email address. Please note that I have
>established the necessary criteria for strEmail. I just think the above
>code is inappropriate for what I am trying to accomplish. Any/all help is
>greatly appreciated! Thanks,
>
>$subst('Email.Unsub')
>
>________________________________________________________________________
>Scottish Enterprise Network
>http://www.scottish-enterprise.com
>
>Headquarters Address & Contact Numbers
>
>150 Broomielaw
>5 Atlantic Quay
>Glasgow
>G2 8LU.
>Tel: +44 (0) 141 248 2700.
>Fax: +44 (0)141 221 3217
>
> This message is sent in confidence for the addressee only.
>It may contain legally privileged information. The contents are not to
>be disclosed to anyone other than the addressee. Unauthorised recipients
>are requested to preserve this confidentiality and to advise the sender
>immediately of any error in transmission.
>
>
>
>$subst('Email.Unsub')
>
>
>$subst('Email.Unsub')
>
>
>$subst('Email.Unsub')
>
_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
$subst('Email.Unsub')
________________________________________________________________________
Scottish Enterprise Network
http://www.scottish-enterprise.com
Headquarters Address & Contact Numbers
150 Broomielaw
5 Atlantic Quay
Glasgow
G2 8LU.
Tel: +44 (0) 141 248 2700.
Fax: +44 (0)141 221 3217
This message is sent in confidence for the addressee only.
It may contain legally privileged information. The contents are not to
be disclosed to anyone other than the addressee. Unauthorised recipients
are requested to preserve this confidentiality and to advise the sender
immediately of any error in transmission.
Message #8 by "Shawn Beasley" <datadriven80@h...> on Fri, 16 Nov 2001 16:43:42 +0000
|
|
You are undoubtedly correct. However, I tried using the double quotes and
received an error. Maybe I entered them incorrectly. That is why I
originally had my double quotes surrounded by single ones. Thanks,
Shawn
>From: "Alex Shiell, ITS, EC, SE" <alex.shiell@s...>
>Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
>To: "ASP Web HowTo" <asp_web_howto@p...>
>Subject: [asp_web_howto] RE: Add an email link to a dynamically built
>.asp page
>Date: Fri, 16 Nov 2001 14:18:50 -0000
>
>you can use single or double quotes for HTML attributes. The only
>situation
>in which they would have to be single is if you were building a string
>
>e.g. response.write "<a href = 'mailto:" & strEmail & "'> Send mail </A>"
>
>but even then you can still put double quotes in
>
>e.g. response.write "<a href = ""mailto:" & strEmail & """> Send mail </A>"
>
>
>-----Original Message-----
>From: Shawn Beasley [mailto:datadriven80@h...]
>Sent: 16 November 2001 14:14
>To: ASP Web HowTo
>Subject: [asp_web_howto] RE: Add an email link to a dynamically built
>.asp page
>
>
>Thanks for the help Eric and Alex. To put it plainly, both of you had
>valuable input. The correct syntax for the code is:
>
> <a href = 'mailto: <%= strEmail %>'> Send mail </A>
>
>Single quotes around the mailto tag (not double). I knew the = sign was
>critical of the response.write statement. I guess I couldn't see the trees
>for the forest! Thanks for your help,
>
>Shawn
>
>
> >From: "Eric Van Camp" <eric@a...>
> >Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
> >To: "ASP Web HowTo" <asp_web_howto@p...>
> >Subject: [asp_web_howto] RE: Add an email link to a dynamically built
>.asp
>
> > page
> >Date: Fri, 16 Nov 2001 12:42:58 +0100
> >
> >sorry...
> >o no no this must be
> ><a href="mailto:<%=stremail%>">Send mail</a>
> >the "=" is the response.write ofcourse!
> >this should help!
> >
> >-----Original Message-----
> >From: Eric Van Camp [mailto:eric@a...]
> >Sent: vr november 16 2001 12:13
> >To: ASP Web HowTo
> >Subject: [asp_web_howto] RE: Add an email link to a dynamically built
> >.asp page
> >
> >
> >no no no this must be
> ><a href="mailto:<%=tremail%>">Send mail</a>
> >this should help!
> >
> >
> >-----Original Message-----
> >From: Alex Shiell, ITS, EC, SE [mailto:alex.shiell@s...]
> >Sent: vr november 16 2001 11:04
> >To: ASP Web HowTo
> >Subject: [asp_web_howto] RE: Add an email link to a dynamically built
> >.asp page
> >
> >
> >I think you may have too many quotes...
> >
> >try <a href='mailto:<% strEmail %>'>Send mail</A>
> >
> >-----Original Message-----
> >From: Shawn Beasley [mailto:datadriven80@h...]
> >Sent: 15 November 2001 22:14
> >To: ASP Web HowTo
> >Subject: [asp_web_howto] Add an email link to a dynamically built .asp
> >page
> >
> >
> >I am having trouble adding a link to a dynamically built .asp page. I
>have
> >an Access database from which my asp page is retrieving information. How
> >can a get data from my Email field in my Access database to show as an
> >email link in my .asp page, bring up an email window with the appropriate
> >information in the "To..." field and have that email link change
>according
> >to the users selection? The database column name is Email and it contains
> >text (various email addresses like user@h...). My setup in my asp
>page
> >is as follows:
> >
> ><B>Email:</B><br>
> ><FONT FACE="verdana, helvetica, sans-serif" SIZE="2">
> > "<a href='"mailto:"' <% strEmail %> '">Send mail</A>"'"
> ></FONT><BR><BR>
> >
> >This just brings up an empty email message window and does not populate
> >the "To:" box with the appropriate email address. Please note that I have
> >established the necessary criteria for strEmail. I just think the above
> >code is inappropriate for what I am trying to accomplish. Any/all help is
> >greatly appreciated! Thanks,
> >
>alex.shiell@s...
> >$subst('Email.Unsub')
> >
> >________________________________________________________________________
> >Scottish Enterprise Network
> >http://www.scottish-enterprise.com
> >
> >Headquarters Address & Contact Numbers
> >
> >150 Broomielaw
> >5 Atlantic Quay
> >Glasgow
> >G2 8LU.
> >Tel: +44 (0) 141 248 2700.
> >Fax: +44 (0)141 221 3217
> >
> > This message is sent in confidence for the addressee only.
> >It may contain legally privileged information. The contents are not to
> >be disclosed to anyone other than the addressee. Unauthorised recipients
> >are requested to preserve this confidentiality and to advise the sender
> >immediately of any error in transmission.
> >
> >
> >
> >$subst('Email.Unsub')
> >
> >
> >$subst('Email.Unsub')
> >
> >
>datadriven80@h...
> >$subst('Email.Unsub')
> >
>
>
>_________________________________________________________________
>Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
>
>
>$subst('Email.Unsub')
>
>________________________________________________________________________
>Scottish Enterprise Network
>http://www.scottish-enterprise.com
>
>Headquarters Address & Contact Numbers
>
>150 Broomielaw
>5 Atlantic Quay
>Glasgow
>G2 8LU.
>Tel: +44 (0) 141 248 2700.
>Fax: +44 (0)141 221 3217
>
> This message is sent in confidence for the addressee only.
>It may contain legally privileged information. The contents are not to
>be disclosed to anyone other than the addressee. Unauthorised recipients
>are requested to preserve this confidentiality and to advise the sender
>immediately of any error in transmission.
>
>
>
>$subst('Email.Unsub')
>
_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
|
|
 |