I am not able to find an original PHPMailer documentation and so I try it on this way.
My understanding is, that if I use msgHTML the PHPMailer will automatically convert the image to an embedded image in the mail.
But I have no idea how I have to include an image as a full adress, for example:C:\\Temp\\Test.jpg
!
<img src"C:\\Temp\\Test.jpg>
does not work!
How do I have to specify$mail->msgHTML($body, ?????, ????)
Because I don't want to vopy my image inside thewwwroot
.
Update
For some stupid reason PPHMailer does not allow an emptybasedir
. I figured it out, after looked into the source code:
if (
//Only process relative URLs if a basedir is provided (i.e. no absolute local paths)
!empty($basedir)
Solution:
So the solution for this problem is, to put all images into the same folder, modify the source code or write your own solution withAddEmbeddedImage
. What I have done:
preg_match_all('~<img.*?src=.([\/.a-z0-9:_-]+).*?>~si',$html,$matches);
$paths = array();
foreach ($matches[1] as $img) {
$img_old = $img;
if(strpos($img, "https://") == false) {
$content_id = md5($img);
$html = str_replace($img_old,'cid:'.$content_id,$html);
$pos = strrpos($img, '/');
$name = substr($img, $pos+1);
$mail->AddEmbeddedImage($img, $content_id, $name);
}
}
$mail->msgHTML($html);
$mail->send();
You can try to convert the image to base64, then put in src.
<p>From wikipedia</p>
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4
//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==" alt="Red dot" />
</div>
See this: https://www.w3docs.com/snippets/html/how-to-display-base64-images-in-html.html
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Find the answer in similar questions on our website.
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
HTML (English "hyper text markup language" - hypertext markup language) is a special markup language that is used to create sites on the Internet.
Browsers understand html perfectly and can interpret it in an understandable way. In general, any page on the site is html-code, which the browser translates into a user-friendly form. By the way, the code of any page is available to everyone.
https://www.w3.org/html/
Welcome to the Q&A site for web developers. Here you can ask a question about the problem you are facing and get answers from other experts. We have created a user-friendly interface so that you can quickly and free of charge ask a question about a web programming problem. We also invite other experts to join our community and help other members who ask questions. In addition, you can use our search for questions with a solution.
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.