Mysmilies.net die Smilies Datenbank

Script oder Datei finden :

 
-Startseite
-Newsarchiv
-Newsletter
-Mein Dreamcodes
-Scripte
-eBooks
-Online Speicher
-Datenbanken
-Webseiten
-Trickfilm
-Web Grafiken
-Bildbearbeiter
-Browser
-EMail Software
-Ftp Clienten
-Betriebssysteme
-Texteditoren
-Wampserver
-Office Pakete
-Antivirus
-System Cleaner
-Recovery Tools
-Php Schnipsel
-Ajax Schnipsel
-VB Schnipsel
-Tutorials
-Workshops
-Webkatalog
-Leserforum
-Erweiterte Suche
-Sitemap
-Impressum
-neuste Downloads

1. Selfphp (1736)
2. Xampp OS X (1631)
3. Xampp Linux (1622)
4. Xampp Windows (1635)

-neuste Tutorials

1. Samsung S20 rooten (1426)
2. Gratis USA Nummer (14844)
3. RAID (13874)
4. Text auf Grafik (14546)


Forum

Moderator: Q
Kategorie: Scripte von A bis Z
Schreibrechte ab: registrierter Benutzer
Beschreibung: Ideen, Vorschläge und Probleme rund um ein Script werdet Ihr hier los

Autor: Infinitive
Thema: Mailanhang
Themen Nummer: 273

 

Forum Scripte von A bis Z Mailanhang
 

Forum Thema:

Mailanhang

Username:
Infinitive
geschrieben am 21.05.2002
um 18:18 Uhr

moinsen......
also, wie man mails mit php verschickt is ja klar..... aber wie häng ich ne datei an? kommt das noch mit innen header????

plz helft mir.....

INF

[Antworten]

 
 

Forum Thema:

> Mailanhang

Username:
Q
geschrieben am 29.05.2002
um 23:11 Uhr

Hups hab ich den Post wohl übersehen, sorry. Probiere mal das :

<?

ob_start();

class mime_mail
{
var $parts;
var $to;
var $from;
var $headers;
var $subject;
var $body;

/*
* void mime_mail()
* class constructor
*/
function mime_mail()
{
$this->parts = array();
$this->to = "";
$this->from = "";
$this->subject = "";
$this->body = "";
$this->headers = "";
}

/*
* void add_attachment(string message, [string name], [string ctype])
* Add an attachment to the mail object
*/
function add_attachment($message, $name = "", $ctype = "application/octet-stream")
{
$this->parts[] = array (
"ctype" => $ctype,
"message" => $message,
"encode" => $encode,
"name" => $name
);
}

/*
* void build_message(array part=
* Build message parts of an multipart mail
*/
function build_message($part)
{
$message = $part[ "message"];
$message = chunk_split(base64_encode($message));
$encoding = "base64";
return "Content-Type: ".$part[ "ctype"].
($part[ "name"]? "; name = \"".$part[ "name"]. "\"" : "").
"\nContent-Transfer-Encoding: $encoding\n\n$message\n";
}

/*
* void build_multipart()
* Build a multipart mail
*/
function build_multipart()
{
$boundary = "b".md5(uniqid(time()));
$multipart = "Content-Type: multipart/mixed; boundary = $boundary\n\nThis is a MIME encoded message.\n\n--$boundary";

for($i = sizeof($this->parts)-1; $i >= 0; $i--)
{
$multipart .= "\n".$this->build_message($this->parts[$i]). "--$boundary";
}
return $multipart.= "--\n";
}

/*
* void send()
* Send the mail (last class-function to be called)
*/
function send()
{
$mime = "";
if (!empty($this->from))
$mime .= "From: ".$this->from. "\n";
if (!empty($this->headers))
$mime .= $this->headers. "\n";

if (!empty($this->body))
$this->add_attachment($this->body, "", "text/html");
$mime .= "MIME-Version: 1.0\n".$this->build_multipart();
mail($this->to, $this->subject, "", $mime);
}
}; // end of class


$mail_class = new mime_mail();

copy($file, $file_name);
$attachment = fread(fopen("file_name", "r"), filesize("$file_name"));
@unlink("file_name");

$mail_class->add_attachment("$attachment", "$file_name");

$mail_class->from = "bla@bla.de";
$mail_class->headers = "Errors-To: bla@bla.de";
$mail_class->to = "email@email.de";
$mail_class->subject = "betreff";
$mail_class->body = "nachricht";
$mail_class->send();


?>

[Antworten]

 
 
-Live Statistik
Datum: 03.05.2024
Uhrzeit: 23:07 Uhr
Online: 8 User
User heute: 9003
User allgem.: 33802070

Eingeloggt als Gast
-Download des Monats
-
-unsere Monats Umfrage
Welche Serie ist besser?

The Blacklist
House of the Dragon
Die Ringe der Macht
The Sandman
Manifest

-unsere Bestseller