Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have to send emails including a logo after the signature.
The logo is stored on the server as PNG file and I call it by an URL in an Oracle request :
"
SELECT '<img src:\"http://ServerID:8080/data/Logo.png\" />' as LOGO
FROM dual
"
=> ServerIP is....... the server IP
=> backslash are used before the echapment character "
Then, in a tMap, I build the text of the email and add to it the variable containing the URL.
It looks like :
"I sent you the order AAA the 10/04/2019 and I am still waiting for your acknowledgement.<br>Please confirm as soon as possible the delivery date.<br>Regards,<br>JOHN DOE<br>" + row1.LOGO
It is transfered to the tSendMail where I call the column in the message zone.
There is no error, the job is OK but there is no logo in my email...
Did someone already do this with the tSendMail component ? Is there another way ?
Thanks for helping
(Screenshots in attachments)
Here are some ideas on what you could try:
Here are some ideas on what you could try:
@ewadhervouet wrote:
Hello nfz11 !
Thanks for your solution.
It allowed me to see that the string
<img src:\"http://ServerID:8080/data/Logo.png\" /> in my request was wrong.
The good string is :
<img src=\"http://ServerID:8080/data/Logo.png\" />
("=" instead of ":" after "img src")
It was just a syntax issue![]()
Sometimes, the issue is so big you don't see it !
Thanks again !
Great, I am glad you were able to solve it.