Image Being Condensed

mkadis

New Member
Hi. I have used MaxBulk Mailer for a number of years now. I am still on version 8.5. I have literally never had an issue with image quality, however it looks like my image sizes are being reduces to 50% of their original quality.

Is there a setting I've changed somewhere by mistake that would be doing this? Any help would be greatly appreciated.

Thanks,
Michael
 

mkadis

New Member
I was assuming it doesn't. Never had this issue in about 6 years of using MaxBulk.

Yes, I basically code an HTML email and paste in the source code into MaxBulk.
 

stanbusk

Administrator
Staff member
You could try:

HTML:
<img src="https://houseandhome.com/ms/housean...t-rsvp-reminder/img/1-trends-2019-rsvp_06.jpg"  alt="1 Trends 2019 Rsvp 06" style="width: 650px; height: 252px; border: 0px; display:block;" />


You can even use the min-width and min-height options:

HTML:
<img src="https://houseandhome.com/ms/housean...t-rsvp-reminder/img/1-trends-2019-rsvp_06.jpg"  alt="1 Trends 2019 Rsvp 06" style="min-width: 650px; min-height: 252px; border: 0px; display:block;" />

--
Follow maxprog.com on Facebook | Google+ | Linkedin | Twitter | YouTube
and keep up-to-date with the latest Max Programming updates!
 
Top