image integration

wissem

Member
Hi!

Is that there is a script that I can add it in the html code of the template to display the image directly
Because I have a lot of problems with my clients who no accept the new email structure (Without image integration)
thank you
 
Hi!

Is that there is a script that I can add it in the html code of the template to display the image directly
Because I have a lot of problems with my clients who no accept the new email structure (Without image integration)
thank you
If you take an email client that will produce the email with images inline encoded, then copy & paste it into mwz' campaign html code editor.
Or use this to encode them and see the example 'how to'
http://www.greywyvern.com/code/php/binary2base64
Enjoy ;)
 
than you to your answer but Where I put exactly this code in head or body ?
You look into the html message code.
Find where the pictures are, then encode the pics and put the codes there according to the examples at the link provided in above post.
 
I tested exactly as the example but still not functional, I have not managed to display the image directly
The only solution is as in the old vertion to put the integration option the image and leaves the choice to the customer to choose with or without integration
 
I tested exactly as the example but still not functional, I have not managed to display the image directly
The only solution is as in the old vertion to put the integration option the image and leaves the choice to the customer to choose with or without integration
Just did it this morning before the above, works perfectly fine.

Code:
<html>
<head>
    <title></title>
</head>
<body><br />
<img alt="embedded folder icon" height="14" src="data:image/gif;base64,R0lGODlhEAAOALMAAOazToeHh0tLS/7LZv/0jvb29t/f3//Ub/
/ge8WSLf/rhf/3kdbW1mxsbP//mf///yH5BAAAAAAALAAAAAAQAA4AAARe8L1Ekyky67QZ1hLnjM5UUde0ECwLJoExKcpp
V0aCcGCmTIHEIUEqjgaORCMxIC6e0CcguWw6aFjsVMkkIr7g77ZKPJjPZqIyd7sJAgVGoEGv2xsBxqNgYPj/gAwXEQA7" width="16" /><br />
<br />
[UNSUBSCRIBE_URL]<br />
<br />
[COMPANY_FULL_ADDRESS]</body>
</html>

Of course, not every email browser will display the pics, but that is always so, depending on their features and if the display is set to be allowed (for inline, external, active, etc content).
 

Attachments

  • Firefox_Screenshot_2017-01-19T16-27-18.917Z.png
    Firefox_Screenshot_2017-01-19T16-27-18.917Z.png
    34.5 KB · Views: 12
  • Firefox_Screenshot_2017-01-19T16-25-44.332Z.png
    Firefox_Screenshot_2017-01-19T16-25-44.332Z.png
    10.6 KB · Views: 11
Great help @frm.mwz



success result
just i have a little question:
are there a negative effect on the rate of opening, or other negative effects?

all my thanks @frm.mwz

Happy it worked for you!

In general it is said to be best to not have inline pictures, but rather have links to external images in the code.
This makes the messages smaller (ie saving resources on billions of emails daily, think of the energy servers use),
it also lets the messages have less (malicious) content that needs to be scanned (again saving resources),
display control is easier for the user or service provider,
and spam filters are more positively inclined, which means your messages inbox better ;)
 
Happy it worked for you!

In general it is said to be best to not have inline pictures, but rather have links to external images in the code.
This makes the messages smaller (ie saving resources on billions of emails daily, think of the energy servers use),
it also lets the messages have less (malicious) content that needs to be scanned (again saving resources),
display control is easier for the user or service provider,
and spam filters are more positively inclined, which means your messages inbox better ;)
I launched a 2 emailing campaigns to make a comparison on the opening rate
And I will communicate the results
 
Back
Top