Leser: 1
![]() |
|< 1 2 >| | ![]() |
16 Einträge, 2 Seiten |
QuoteDass die Standardmodule 1000 eher dem Standards entsprechen ist keine Frage. diese kann man dann verwenden und versteht auch was man da macht wenn man sie anwendet.
QuoteWenn man dann noch genau wissen will wie sich so eine Mail komplett mit MIME-Types, etc. pp incl Attachments boundary's zusammen setzt kann man sich ja dann auch noch anschauen.
QuoteSoweit ich weiß hat Erik dazu ja auch mal einen Artikel ins Wiki gestellt.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
my $html = qq[
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>Normale Seite ohne Titel</title>
</head>
<body bgcolor="#FFFFFF">
<p align="center"><font size="4"><strong>Dieses ist ein </strong></font><font
color="#0080FF" size="4"><strong>formatierter</strong></font><font
size="4"><strong> Text in html</strong></font></p>
<p> </p>
</body>
</html>
];
print SM "From: $email\n";
print SM "To: $in{'email'}\n";
print SM "Subject: $rsubject $date\n";
print SM "Content-type: text/html\n";
print SM "\n";# Hier ist der Mail header zu ende!!!!!!!!
print SM "$html";
close(SM);
![]() |
|< 1 2 >| | ![]() |
16 Einträge, 2 Seiten |