>php教程 >PHP源码 >PHPMailer 在邮件中嵌入图片

PHPMailer 在邮件中嵌入图片

PHP中文网
PHP中文网원래의
2016-05-25 17:14:471710검색

PHPMailer 在邮件中嵌入图片

function embed_images(&$body)
{
    // get all img tags
    preg_match_all('//', $body, $matches);
    if (!isset($matches[0])) return;
    // foreach tag, create the cid and embed image
    $i = 1;
    foreach ($matches[0] as $img)
    {
        // make cid
        $id = 'img'.($i++);
        // replace image web path with local path
        preg_match('/src="(.*?)"/', $body, $m);
        if (!isset($m[1])) continue;
        $arr = parse_url($m[1]);
        if (!isset($arr['host']) || !isset($arr['path']))continue;
        // add
   $this->AddEmbeddedImage('/home/username/'.$arr['host'].'/
   public'.$arr['path'], $id, 'attachment', 'base64', 'image/jpeg');
        $body = str_replace($img, '', $body); 
    }
}

                   

以上就是PHPMailer 在邮件中嵌入图片的内容,更多相关内容请关注PHP中文网(www.php.cn)!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.