When you email a Quotation with a template you create with PDF Template, and this template includes a local image like: "themes/default/images/company_logo.png" this URL image is sent via email.... It should be rewritten like: https://demo.suitecrm.nube.coop/themes/default/images/company_logo.png
If not, the image is not loaded in the email.
The img tag shoud be something like:
<img style="float:left;" src="https://demo.suitecrm.nube.coop/themes/default/images/company_logo.png" alt="">
The img tag is:
<img style="float:left;" src="themes/default/images/company_logo.png" alt="">




<img style="float:left;" src="themes/default/images/company_logo.png" alt="">
Hi @PedroErnst !!
Thanks for your patch!!
I think the URL of the image should be created this way:
$logoUrl = $baseUrl . '/' . $logoUrlArr[0].'?'.$logoUrlArr[1];
If we do this way, the proxies will manage the cache in a better way.
Anyway I apply your patch, but I think the WYSIWYG email composer manipulates the images urls:

Hi Abuelodelanada,
Yes you're absolutely right. I just checked and indeed the correct URL is saved in the DB, then also correctly loaded into the email module, but at some point it gets replaced by the incomplete version.
Ok that problem should be solved now as well with the last commit. On my end the emails arrive correctly with the full URL.
Let me know if there are any issues.
Hi @PedroErnst
It works!
@Dillon-Brown In order to have this patch in 7.10 this pull request should be done in hotfix branch?
@Abuelodelanada It's currently pointed to develop so it will only end up in 7.10. It will need to be remade or I will duplicate it for 7.9.x.