DonAtlanta
07-26-2002, 05:06 AM
This script pops up a mail window and addresses
it to don@abc.com but when I add
+ "?Subject: Attention" it does not fill in
the Subject field.
How can I fill in the Subject field?
Thank you.
<script>
function popupMessage() {
var to = "don@abc.com";
// Build mail message components
var doc = "mailto:" + to +"?Subject: Attention"
// Pop UP email message window
window.location = doc;
}
</script>
it to don@abc.com but when I add
+ "?Subject: Attention" it does not fill in
the Subject field.
How can I fill in the Subject field?
Thank you.
<script>
function popupMessage() {
var to = "don@abc.com";
// Build mail message components
var doc = "mailto:" + to +"?Subject: Attention"
// Pop UP email message window
window.location = doc;
}
</script>