Thread mit perl eine mail versenden als html formatierter (15 answers)
Opened by heinz.hemer at 2005-02-14 16:55

format_c
 2005-02-14 18:54
#4401 #4401
User since
2003-08-04
1706 Artikel
HausmeisterIn
[Homepage] [default_avatar]
Also bei funktioniert das prima:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
koeppea@foxi:~/perl_scripts> cat htmlmail.pl
use strict;
open(PIPE,"| `which sendmail` -t") or die $!;
print PIPE << 'ENDOFDOCUMENT';
To: [EMAIL=format_c@example.org]format_c@example.org[/EMAIL]
From: [EMAIL=koeppea@example.org]koeppea@example.org[/EMAIL]
Subject: HTML-Test
Content-type: text/html

<html><head>
<title>Meine Testmail</title></head>
<body>
<h2>Das ist eine uebschrift2</h2>
</body>
</html>

ENDOFDOCUMENT
close PIPE;
print "sent\n";
koeppea@foxi:~/perl_scripts>


Gruß Alex

View full thread mit perl eine mail versenden als html formatierter