Changes
Title
changed
Email by YiimMailer, Call Outlook, IMAP
Category
unchanged
How-tos
Yii version
unchanged
Tags
changed
eEmail, oOutlook, YiiMailer, IMAP
Content
changed
In Yii community we have lots of extention can send emails, such as YiiMailer and Swift and so on, or even IMAPI, thanks for team contribution.
However, sometimes, in the intranet enviroment, the program cannot run successfully since SMTP /IMAP port been banded. So you need to seek other ways. The most simple way is
**_call outlook
_** as COM.
Let me introduce send email by YiiMailer/OutLook/IMAPI below, thanks.
1.**- YiiMailer Sample
**
----------------------[...]
```
2.**- Call Outlook example
**
--------------------------[...]
3.**- List email by IMAP.
**
-------------------------
```php
$hostname = '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX';
$username = 'WWSP.xxx.NoReply@gmail.com';
$password = 'xxx';[...]