Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<?php
$mbox = imap_open("{IMAP-SERVER:143}", "BENUTZERNAME", "PASSWORT");
echo "<h1>Nachrichten in INBOX</h1>\n";
$headers = imap_headers($mbox);
if ($headers == false) {
echo "Abruf fehlgeschlagen<br />\n";
} else {
foreach ($headers as $val) {
echo $val . "<br />\n";
}
}
echo "<br><br><br>";
imap_close($mbox);
?>
<?php
$mbox = imap_open ("{IMAP-SERVER}", "BENUTZERNAME", "PASSWORT");
$struct = imap_fetchstructure($mbox,NUMMER-DER-MAIL);
$existAttachments = existAttachment($struct);
function existAttachment($part){
if (isset($part->parts)){
foreach ($part->parts as $partOfPart){
existAttachment($partOfPart);
}
}
else{
if (isset($part->disposition)){
if ($part->disposition == 'attachment'){
echo '<p>' . $part->dparameters[0]->value . '</p>';
// here you can create a link to the file whose name is $part->dparameters[0]->value to download it
return true;
}
}
}
}
echo $existAttachments;
imap_close ($mbox);
?>