2012-10-17 86 views
1

我有Cpanel和域。我可以通過轉到Cpanel中的電子郵件帳戶選項來創建電子郵件帳戶。我的問題是我怎樣才能從一個PHP Web應用程序在Cpanel中創建一個電子郵件帳戶? 我想要一個適當的指導。通過PHP訪問Webmail

在此先感謝。

+0

嘗試http://forums.cpanel.net/f43/create-e-mail-accounts-e-mail-forwarding-without-logging-c-panel-dynamic-way-217551.html – Flaxbeard

+0

這還不夠。你能否介紹我一些其他資源? – user1731476

+0

試試這個,它從該頁面鏈接,看起來應該工作:http://forums.cpanel.net/f42/php-script-generating-forwarders-programmatically-115569.html第二篇文章有一種方法來創建一個使用XML的轉發器。 – Flaxbeard

回答

0

看看這個。它的Gmail account.Configure爲您的帳戶:

/* connect to gmail */ 
$hostname = '{imap.gmail.com:993/imap/ssl}INBOX'; 
$username = '[email protected]'; 
$password = 'password here'; 

/* try to connect */ 
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error()); 

/* grab emails */ 
$emails = imap_search($inbox,'ALL'); 

/* if emails are returned, cycle through each... */ 
    if($emails) { 

/* begin output var */ 
$output = ''; 

/* put the newest emails on top */ 
rsort($emails); 

/* for every email... */ 
foreach($emails as $email_number) { 

    /* get information specific to this email */ 
    $overview = imap_fetch_overview($inbox,$email_number,0); 
    $message = imap_fetchbody($inbox,$email_number,2); 

    /* output the email header information */ 
    $output.= '<div class="toggler '.($overview[0]->seen ? 'read' : 'unread').'">'; 
    $output.= '<span class="subject">'.$overview[0]->subject.'</span> '; 
    $output.= '<span class="from">'.$overview[0]->from.'</span>'; 
    $output.= '<span class="date">on '.$overview[0]->date.'</span>'; 
    $output.= '</div>'; 

    /* output the email body */ 
    $output.= '<div class="body">'.$message.'</div>'; 
} 

echo $output; 
} 

/* close the connection */ 
imap_close($inbox); 

我認爲這將有助於you.Thanks.razin223

+0

問題是如何使用PHP創建電子郵件帳戶,而不是查看電子郵件帳戶的郵件。非常酷的腳本雖然:) – twodayslate