Jon: get($url); in Path=> inline

Beitrag lesen

Hallo Struppi

So funktioniert es.

Nun sollte aber die Domain nicht mit log auf dem Server gespeichert werden sondern direckt von der http://domain inline versendet werden

use MIME::Lite;

$url = "htp://domain.de";
    $inhalt= get($url);

open (LOG,">inhalt.txt");
print LOG "$inhalt";
close (LOG);

$msg = MIME::Lite->new(
From =>"$my{'email'}",
To =>"$in{'email'}",
Subject =>"$ubject",
Type =>'multipart/alternative',
Data =>"Message contains MIME."
);

$msg->attach(Type => 'text/html',
Path => "inhalt.txt",
Filename =>'',
Encoding =>'quoted-printable',
Disposition => 'inline'
);

Viele Grüße
Jon