ich habe mal angefangen, eine Klasse für mein Webmailpanel zu coden, aber da ich noch nicht viel mit Klasses gemacht habe, wollte ich wissen, ob das so ok ist oder totaler Stuss
Übrigens, ich suche auch noch jemanden, der Lust hat, mit an einem CMS weiterzuwerkeln.
PHP:
<?php
class webmail {
var $mailhost;
var $mailuser;
var $mailpass;
function webmail($ehost, $euser, $epass) {
$this->mailhost = $ehost;
$this->mailuser = $euser;
$this->mailpass = $epass;
}
function zeigeMails() {
$inbox = @imap_open("{".$this->mailhost."/pop3:110}",$this->mailuser, $this->mailpass);
$total = imap_num_msg($inbox);
if ($total > 0) {
for($x=$total, $x > 0; $x--){
$headers = imap_header($inbox, $x);
$structure = imap_fetchstructure($inbox, $x);
$datum = substr($headers->Date, 0, 22);
$froma = htmlspecialchars($headers->fromaddress);
$subject = $headers->Subject;
$size = ceil($structure->bytes/1024));
}
imap_close($inbox);
} else {
echo "Errormsg blahblup";
}
function delMails($msg) {
$inbox = @imap_open("{".$this->mailhost."/pop3:110}",$this->mailuser, $this->mailpass);
for($x=0; $x< sizeof($msg); $x++) {
imap_delete($inbox, $msg[x]);
}
imap_close($inbox, CL_EXPUNGE);
}
}
?>
Übrigens, ich suche auch noch jemanden, der Lust hat, mit an einem CMS weiterzuwerkeln.
Zuletzt bearbeitet: