rechmbrs
01-28-2005, 04:51 PM
I have about 50 forms (HTML/Javascript) that send E-Mail using the typical Javascript code: (urlText is the MAILTO info)
window.location.href = urlText;
This was developed on a system where Perl/CGI was not made available to others than a systems group.
Problem now is that many E-Mails are too long for Outlook/IE? to mail. Seems there is a limit of about 2000 characters. I expect that the Perl/CGI side has a much larger limit??
I have a shared function that compiles the urlText and would like to simply copy urlText from that Javascript function to Perl/CGI routine which will then Mail with Perl.
How might one do that directly from Javascript? I don't wish to return to the HTML form to execute the mailing.
Appriciate your help.
RON C :D
window.location.href = urlText;
This was developed on a system where Perl/CGI was not made available to others than a systems group.
Problem now is that many E-Mails are too long for Outlook/IE? to mail. Seems there is a limit of about 2000 characters. I expect that the Perl/CGI side has a much larger limit??
I have a shared function that compiles the urlText and would like to simply copy urlText from that Javascript function to Perl/CGI routine which will then Mail with Perl.
How might one do that directly from Javascript? I don't wish to return to the HTML form to execute the mailing.
Appriciate your help.
RON C :D