Thread String als Text-Attachment an eine Email "hängen" (5 answers)
Opened by Der Namenlose at 2013-08-06 11:57

Gast Der Namenlose
 2013-08-06 11:57
#169413 #169413
Hallo, bisher habe ich Anhänge per MIME::Lite erstellt/versendet;

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
my $msg = build MIME::Lite 
From => 'sender@email',
To => $mail_recipient,
Subject => $mail_subject,
Type => 'text/plain',
Data => $mail_text;

attach $msg
Type => "text/plain",
Path => $original_file,
Encoding => "base64",

MIME::Lite->send('smtp', $mail_server_ip, Timeout=>60);
$msg->send;


Jetzt würde ich gerne den Inhalt einer Variable als Text Attachment ranhängen ohne den Umweg über eine Datei. Ist das mit mime:lite möglich?

VG
Last edited: 2013-08-06 11:58:53 +0200 (CEST)

View full thread String als Text-Attachment an eine Email "hängen"