### PHPMailer 郵件發送
發送郵件`接收郵件人,多個收件人用英文,隔開。`
```
cp::re('email');
$to = 'test@cmsmpro.cn'; //接收郵件人
$title = 'CMSPRO郵箱測試郵件'; //發送標題
$content = '這里內容信息<br>我換行了!'; //發送內容,支持HTML
$attachment = '/logo.gif'; //發送附件,可選。指定物理路徑。
$mail = new mail($to, $title, $content, $attachment);
if ($mail == '1') {
echo '發送成功';
}
```