LC Postfach per PHP abrufen?
lima-city → Forum → Programmiersprachen → PHP, MySQL & .htaccess
abfrage
abrufen
array
betreff
code
helfen
image
index
inhalt
kennwort
list
message
nachricht
nummer
part
postfach
risiko
text
type
video
-
Hallo LC,
Kann man/ich mein E-Mail postfach von Lima_city abrufen?
Wenn ja wie? Könnt ihr mir Helfen?
Thx Schonmal
Chrissi
edit:
Google hat mir das gegeben:
<? function get_mime_type(&$structure) { $primary_mime_type = array("TEXT", "MULTIPART", "MESSAGE", "APPLICATION", "AUDIO", "IMAGE", "VIDEO", "OTHER"); if ($structure->subtype) { return $primary_mime_type[(int) $structure->type] . '/' . $structure->subtype; } return "TEXT/PLAIN"; } function get_part($stream, $msg_number, $mime_type, $structure = false, $part_number = false) { $prefix = ""; if (!$structure) { $structure = imap_fetchstructure($stream, $msg_number); } if ($structure) { if ($mime_type == get_mime_type($structure)) { if (!$part_number) { $part_number = "1"; } $text = imap_fetchbody($stream, $msg_number, $part_number); if ($structure->encoding == 3) { return imap_base64($text); } else if ($structure->encoding == 4) { return imap_qprint($text); } else { return $text; } } if($structure->type == 1) /* multipart */ { while (list($index, $sub_structure) = each($structure->parts)) { if ($part_number) { $prefix = $part_number . '.'; } $data = get_part($stream, $msg_number, $mime_type, $sub_structure, $prefix . ($index + 1)); if ($data) { return $data; } } } } return false; } $hostname = "mail.lima-city.de"; $username = "meinmail@meinedomain.de"; $kennwort = "...."; $mailbox = imap_open("{".$hostname."}", $username, $kennwort); $mails = imap_fetch_overview($mailbox,"1:*", FT_UID); $nachricht_tell = ""; $size=count($mails); $cmsg = 0; for ($i=$size-1; $i>=0; $i--) { $cmsg++; $value = $mails[$i]; $mail = get_part($mailbox, $value->msgno, "TEXT/PLAIN"); $nachricht_tell .= "Nachricht Nummer ".$cmsg." von ".$value->from.". Betreff: ".$value->subject."."; $nachricht_tell .= "Inhalt: ".$mail."."; } imap_close($mailbox); TTS_Speak(47164, $nachricht_tell); ?>
will aber ihrgent wie nicht wie ich will...
Beitrag zuletzt geändert: 2.1.2010 0:53:01 von christian1603 -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
Hallo,
1.Schon mal die Risiken gedacht?
2.Lima hat ein eigenen Postfach unter mail.lima-city.de.
3.Ich finde du solltest eine Passwort und E-Mail Abfrage einbauen .
Beitrag zuletzt geändert: 2.1.2010 2:00:38 von privatecitypage -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage