Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. fietse

    Converting Text

    yeah i understant that it will only print but we are not going to write whole scripts are we ?? i mean i thought that wasnt what this form is about
  2. fietse

    net::smtp

    yeah i see its prity cool :) unfortunatly the server on which it had too runs dousnt have the module and i can't install it there too. but i read the perldoc and its much handyer indeed Thx fietse
  3. fietse

    net::smtp

    oh for the copy paster u should stll put use Net::SMTP; below #!/usr/bin/perl
  4. fietse

    net::smtp

    i thougt maybe i should post the complete example Here it is a html mail with green background eek!! an test in tekst + test3 in bold #!/usr/bin/perl $smtp = Net::SMTP->new('smtp.provider.com'); #get local mail user :) $smtp->mail($ENV{USER}); #to $smtp->to('bla@bla.nl'); $smtp->data()...
  5. fietse

    net::smtp

    i already found it out :) you can make an html mail with the fillowing line after subject: im a bit ashamed bescause its quite simular to CGI :) $smtp->datasend("Content-Type: text/html"); thats it Fietse
  6. fietse

    Converting Text

    this wil read line to line from bla.txt in current dir and in the wile you can do what ever you want with the input i also know a good tutorial for perl you can find it in "man perl" there are a couple of tutotials i hope this is what you mean #!/usr/bin/perl...
  7. fietse

    net::smtp

    dous any one have an idea howto make an html header with net::smtp ? and where to post it thx fietse, example net::smtp script ##### $smtp = Net::SMTP->new('smtp.server'); $smtp->mail('from mail adress'); $smtp->to('to mail adress'); $smtp->data(); $smtp->datasend("To: vissible to...
  8. fietse

    CGI and QUERY Statement

    and why dousnt any one use CGI like its ment to be. Like $q->header(),start_html etc...; it would make scripts much more readble up2date with html genartion..and life much easyer. and read some books too about sub being on the bottum of the script

Part and Inventory Search

Back
Top