Image in payment email is not correct
Forum rules
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Image in payment email is not correct
Hi,
I configured the image for the email in the Scheduler this way:
Now, in emails there are two(!) logo-images as attachments (twice the same), but the one within the html-part is not shown, neither in Outlook 365 nor in webmail. It shows a message to download the image but nothing happens!?
Is that problem known?
Thanks for help.
Kurt
Aimeos: 20.10.2
TYPO3: 10.4.10
PHP: 7.3.25
I configured the image for the email in the Scheduler this way:
Code: Select all
client.html.email.logo = /var/www/vhosts/correctpath-to-extension/Resources/Public/Images/logoemail.png
Is that problem known?
Thanks for help.
Kurt
Aimeos: 20.10.2
TYPO3: 10.4.10
PHP: 7.3.25
Re: Image in payment email is not correct
Nobody brought this up before. The logo is attached here for the order confirmation:
https://github.com/aimeos/ai-client-htm ... d.php#L242
https://github.com/aimeos/ai-client-htm ... d.php#L242
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Image in payment email is not correct
Ok, try to save it in an other format. Maybe PNG with alpha channel is not good...
Re: Image in payment email is not correct
As you can see, the problem is still remaining...
Re: Image in payment email is not correct
What is the source code of your email?
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Image in payment email is not correct
Attached the email HTML code.
I realized that there are further problems:
I realized that there are further problems:
- In the scheduler I cannot provide a page ID for product catalog (Product catalog page ID). After saving the value is gone and the field is empty again.
- The BCC recievers do not get the email. It is configured like that (the same way as in TYPO3 9.5):
Code: Select all
client.html.email.bcc-email { 0 = email@email.com 1 = email2@email.com }
- Attachments
-
- email.zip
- (3.3 KiB) Downloaded 365 times
Re: Image in payment email is not correct
To see what has happened, we would need the full source code of the email from your inbox.
This is a problem of the scheduler in rare cases when saving your new task the first time. We don't know why that happens but if you add your page ID again, it will be saved without problems.
This should work, you can check the code here:promptnet wrote: ↑08 Dec 2020, 13:32 [*]The BCC recievers do not get the email. It is configured like that (the same way as in TYPO3 9.5):[/list]Code: Select all
client.html.email.bcc-email { 0 = email@email.com 1 = email2@email.com }
https://github.com/aimeos/ai-client-htm ... #L287-L319
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Image in payment email is not correct
Attached the full source code of the email. I replaced every occurence of my personal data and of the shopholder data.
The BCC receivers do not get an email!? Why? I also added the following in the scheduler config and in main TS template:
In main TS template with
It seems that there is a severe problem with the installation...
The BCC receivers do not get an email!? Why? I also added the following in the scheduler config and in main TS template:
Code: Select all
client.html.email.payment.bcc-email {
0 = email@email.com
1 = email@email.com
}
Code: Select all
plugin.tx_aimeos.settings.client.html.email.payment.bcc-email
- Attachments
-
- email.zip
- (19.36 KiB) Downloaded 382 times
Re: Image in payment email is not correct
It contains the image two times as attachment but the image reference in the HTML section is different than for the attachments. I think we've found the problem and fixed it with this commit:
https://github.com/aimeos/ai-typo3/comm ... f1924a2355
Can you please check if it works now?
Your configuration is correct. Can you check if the BCC addresses are added here:promptnet wrote: ↑09 Dec 2020, 11:27 The BCC receivers do not get an email!? Why? I also added the following in the scheduler config and in main TS template:In main TS template withCode: Select all
client.html.email.payment.bcc-email { 0 = email@email.com 1 = email@email.com }
Code: Select all
plugin.tx_aimeos.settings.client.html.email.payment.bcc-email
https://github.com/aimeos/ai-client-htm ... d.php#L317
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Image in payment email is not correct
Thanks - image is working now!aimeos wrote: ↑11 Dec 2020, 11:40 I think we've found the problem and fixed it with this commit:
https://github.com/aimeos/ai-typo3/comm ... f1924a2355
Yes, BCC addresses are added. I made a var_dump(), and they were displayed.aimeos wrote: ↑11 Dec 2020, 11:40 Your configuration is correct. Can you check if the BCC addresses are added here:
https://github.com/aimeos/ai-client-htm ... d.php#L317