Hi, rather new to the perl world. I have some code I customized for my own use for a web page form e-mail. It sends the e-mail, but will ask the user to download the .pl file instead of sending them to my redirect page. Here is the code
#!C:/Perl/bin/perl.exe use strict; use CGI qw(:standard); my $sname=param('sendername'); my $saddr=param('senderaddr'); my $rname=param('recpientname'); my $raddr=param('recipientaddr'); my $subject=param('subject'); my $server="server.theone.i.use"; my $ThankPage = "http://the.site.i.want.to.end.with"; my $message=param('message'); my $lt='<'; my $gt='>'; open (messtxt,">message.txt"); print messtxt ($message); close messtxt; my $blat="E:\\Inetpub\\wwwroot\\misc\\blat\\blat\.exe -body \"$message +\" -s \"$subject\" -t \"$raddr\" -server $server -f \"$saddr\""; system($blat); print "Location: $ThankPage\n\n";
Any ideas?

In reply to Perl Mailer by Six

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.