Hi!
I'm trying to debug a responsive email design I have created using a template and record. As I compare a working version (dummy test sent via mailchimp) and the mydbr version, four things have some up so far:
- mydbr seems to set
Content-Type: text/html; charset=us-ascii
while in mailchimp it isContent-Type: text/html; charset="utf-8"
- is there anyway to set this in mydbr? - The mydbr email doesn't seem to have the doctype element at all - is there a way to add it (e.g.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www=2Ew3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
) - The html opening tag in mydbr is just the bare min (<html>) - is there a way to extend it like:
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
- the CSS head file I add via dbr.head doesn't seem to get added to the email html head within the script tags. Instead another is added - is this the mydbr default and is there a way to include my own css in the email instead?
- In fact, none of the header lines added via dbr.head are in the email version despite being between the record start/stop tags. Is there a way to ensure they are added? e.g.
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Cheers,
Duane