Error sending Newsletter by mailing

0

Good morning gentlemen, I wanted to see if they could get me out of a bind, I have a client who commissioned a newsletter with interactive sectors linked to their networks and web, it happens that I built it entirely in html, when uploading it to the server it can be visualize perfectly, but when sending it in your mailing manager the newsletter disarms everything. The manager of mailing is provided by his hosting, and from the technical service he was told that it is very normal that the forms have to adapt to several "User Agents" and that the CSS must have alternatives based on who opens them. The problem is that I do not know how to adapt the code to different User Agents. I enclose a capture of how the newsletter is when received with GMAIL.

I would appreciate if anyone can give me a hand with this, if it is necessary to upload the code, my client is already driving me crazy. Thanks from now

    
asked by Nicolas Dure 29.01.2018 в 18:41
source

1 answer

0

Because of what you see in the image of the question, you are using an "image map". According to Image Map Support in HTML Email They are supported by most mail clients, however they have limitations, for example, the clients of mobile devices scale the images which will "break" the image map.

It should be mentioned that in Gmail we can use <style> , online styles and a subset of CSS. The full list of selectors supported by Gmail is at link

On the accepted response to Gmail image map - only the last area works suggest

  • Always use tables
  • Never use <p>
  • Always put display:block in the images to avoid spaces between images

It would also be worthwhile for you to consult

link

    
answered by 07.02.2018 в 06:25