HTML used to format emails.

learn more… | top users | synonyms

38
votes
4answers
29k views

Sending HTML email in Python

How can I send the html content in the email using python? I can send simple text.
0
votes
2answers
3k views

Embedding image in email in Android

Is it possible to programatically embed an image in the body of an email sent by the Mail app in Android? Can I use the ACTION_SEND intent to do this, or should I compose the email myself?
29
votes
4answers
14k views

HTML email: tables or divs?

Does the HTML/CSS for an html email newsletter need to be in table format, or can I use DIVs with equal assurance it will display well cross email-client? I've downloaded a number of templates to see ...
1
vote
4answers
3k views

PHP mail formatting issue - Why do CRLF header line endings break HTML email in Outlook?

I'm using the PHP native mail() function to send HTML emails and have a formatting problem in the users most common email client - Outlook 2007 (in addition to some other email clients) - all the html ...
4
votes
3answers
3k views

Do I need to use spacer images when coding HTML emails?

I understand that HTML emails need to use really old school layouts - as per lots of other answers on SO (e.g. HTML email: tables or divs?, HTML Email using CSS). However, there seems to be some ...
22
votes
4answers
4k views

What is Data URI support like in major email client software?

Data URIs are a standard way to embed images and other binary data in HTML, and browser support is well documented on the web. (IE8 was the first version of IE to support Data URI, with a max 32 KB ...
9
votes
5answers
9k views

Why is Gmail blocking CSS in emails?

I used CSS in my email and sent it out. When I received the email in Gmail, all the CSS was disabled; however, when I retrieved the email in thunderbird or outlook, everything is OK. How would I fix ...
3
votes
2answers
3k views

CSS Images in Email With Rails 3

I'm trying to send out an email with Rails 3 and Action Mailer. The email goes out fine, but I want it to be HTML formatted with some basic styling which includes background images. I understand that ...
3
votes
1answer
845 views

Can an HTML email body reference a file sent as an attachment (in the same email)?

Can an HTML email use an image attachment as the source for tag? Let's say I am sending an email with per-email specific images - and they are sent as an attachment to the email - can the HTML body ...
3
votes
2answers
2k views

workaround for the 990 character limitation for email mailservers

Wanted to know if there are any functions/classes/etc.. to help with the 990 character limitation for email as my HTML is being effected due to this. The Problem: (Source) Note that mailservers ...
2
votes
1answer
9k views

Declaring mime type for html-email

I want to create a html email and I've read a lot about how to do it. There is one piece of information I can't find. How should I declare the mime type? I tried with: meta http-equiv="Content-Type" ...
1
vote
1answer
2k views

Sending Outlook Email with embedded image using VBS

I am currently using the following VBS script to send an email and it works fine, however the image is sent as an attachment. I would instead like to embed the image into the email. I understand ...
1
vote
4answers
436 views

getting rid of space with the superscript in html emails

superscript is leaving a big space between the line height. code is <span style="position:relative; bottom:0.2em; font-size: 0.8em">&reg;</span> I am not using the ...
1
vote
2answers
5k views

how to send an HTML email with an inline attached image with PHP

I have a PHP script which sends an HTML email with an attached image. It works beauifully, however, I can't get the attachment to display in an <img> tag in the email body. The attached file is ...
1
vote
4answers
322 views

Rules when creating HTML E-Mails?

Is there anything I need to be aware of when creating a HTML e-mail? Is it as simple as creating a valid HTML page then sending it via PHP? Or do I need to use tables to ensure it display's correctly. ...
0
votes
4answers
896 views

How to sent a form without refreshing the page?

I don't know PHP. I don't want the user to go to http://www.example.com/feedback-thanks.html after sending the form. What I want is a text below the sent button or anything without refreshing the ...
0
votes
1answer
77 views

Is it possible to have a free web-service that would check a page and email its HTML code to me?

I just asked a question about whether it was possible to write a web-page-checking code and run it from free web server, and one supporter answered and said that it was possible and suggested that I ...
13
votes
4answers
12k views

styling html email for GMail

I'm generating a html email that uses an internal stylesheet, i.e. <!doctype html> <head> <style type="text/css"> h2.foo {color: red} </style> </head> ...
8
votes
4answers
23k views

Facebook Like Button For Email

Ok, so I've looked around a number of different websites but seem to get mixed information. Does anyone have any advice for implementing a Facebook Like button in an HTML email campaign? I have ...
18
votes
1answer
4k views

What's a 3D doing in this HTML?

I'm trying to duplicate a mailer I got into my gmail by taking a look at its code. I see a lot of this in multiple source viewers: <td style=3D"border-bottom: 1px dotted rgb(153,157, 147); ...
10
votes
2answers
7k views

Is there an equivalent of CSS max-width that works in HTML emails?

I'm trying to create an HTML email that will display properly in all widely used email clients. I'm wrapping the whole email in a table, and I'd like it to have a width that is up to 98% of the ...
5
votes
4answers
14k views

html email with background-image style not shown

I am creating an email template which has to display images from external website. I had placed some <img> tags for rendering the images and there are some <td> tags with background-image ...
10
votes
1answer
4k views

Do we still need to use <font> tags in HTML emails?

I'm taking over from someone who builds our HTML emails and the templates are filled with font tags. Is this really necessary? I know CSS support isn't great in emails, but if I set an inline style ...
8
votes
2answers
5k views

What does MailMessage.IsBodyHtml do?

I'm testing sending out some emails via C#, but I can't tell what effect setting IsBodyHtml to true has. Regardless of the value, whatever I send in my Body shows up with a content type of ...
2
votes
4answers
401 views

Safe markup for HTML email

Email clients are limited in their HTML display capabilities. What HTML markup and CSS styles is it safe to use in HTML-formatted email?
3
votes
5answers
1k views

Email newsletter not rendering correctly

I'm new in CSS and HTML. I have an email template with HTML and CSS code. I put a pink circle box in my newsletter template to the top right: http://www.pedersenshotell.se/newsletter/ It looks OK on ...
2
votes
2answers
423 views

How to remove borders around broken images in webkit?

Can anybody advise me on this? WebKit browsers keeps on putting a gray 1px border around disabled images. The reason I need this removed is for email optimization for when email clients have images ...
2
votes
2answers
277 views

Google DFP ads in email behaving strangely

I am trying out serving DFP ads in email. I'm following the guidelines here. I have an ad unit set up just for email I have a line item targeting that ad unit with just an image creative The line ...
2
votes
3answers
2k views

HTML Emails - Empty Tables/TR/TD as spacers

Has anyone had any experience with using empty tables, table rows or table cells as layout spacers? I've been testing out my HTML email in various email clients (Mail, Entourage, Gmail, etc.) and ...
1
vote
1answer
2k views

Responsive emails on Gmail app (Android)

I have created a responsive email template which works in all web clients, all versions of outlook, apple mail, thunderbird, iOS, HTC's 'Mail' app and nearly everything else minus Lotus notes. Is ...
1
vote
3answers
875 views

Force the correct font-size in Blackberry for rendering in an HTML email?

I'm working on an html email that needs to render well on the Blackberry OS. The formatting of the text keeps getting blown up in Blackberry, see screenshots. Blackberry ------------ Correct ...
0
votes
1answer
118 views

How to modify actionmailer email html_part before sending

I have everything at the point where I'm about to send out the email but I need to modify all links to include Google Analytics attributes. The problem is that if I try and read/write the ...
0
votes
3answers
555 views

Link in 100% width table results in 90% width table

This is REALLY wierd. This below code should result in a 100% width e-mail, with a lime colored top. But because the TD contains a link, the whole table is now 90% (or so) - but only in iPhone ...
0
votes
2answers
3k views

Send html email with embedded image and plain text with same image as attachment in C#

I wish to send an email, with a plain text and html version. The email needs an image to go with it (not one I can host somewhere else), it should be embedded if the client views it in html, and ...
9
votes
5answers
863 views

Styling html in email

I'm sending emails with an HTML version for capable clients (isn't that virtually all nowadays?). My worry is how to style it. Do I use inline css? Can I include the stylesheet in the html? Does ...
4
votes
1answer
2k views

rowspans and colspans in html email

Can rowspans and colspans be safely used when designing table-based HTML emails? I have been told that they don't display correctly in Outlook 2007 and that tables must be nested in order to provide ...
3
votes
2answers
4k views

HTML Email not displaying correctly in Outlook 2007

After a lot of time I put into researching. I still can't find an answer. I have a HTML that is showing the wrong width in my tables. Here is a link to the html email: ...
3
votes
1answer
255 views

Email file is sending email two times using php mail function

My three concerns, tried different combos with no result, googled but little or no help -- I received two times the email,change myemail@emailserver.com to the email id to see the result. While ...
3
votes
5answers
591 views

HTML email guide

I am not new to HTML/CSS, although I have never created a HTML email before. Are there any nice online resources I can look at to learn from? What do I have to take into consideration when it comes ...
3
votes
2answers
1k views

Trouble with Image Maps, Safari, and Gmail for HTML email

I have a quirky problem -- I'm sending an html email that contains some image mapped links. My problem surrounds Gmail and Safari. Strangely, emails when view from Gmail (and their image maps) ...
2
votes
5answers
2k views

Large gap in table - Outlook 2010

I am working on multiple emails for a client who is using Outlook 2010 version 14 for a PC in their office. No matter how the email is created the right side of the table is blown way out. For ...
2
votes
2answers
121 views

My Emails sent through PHP shows as tags only for a few recipients (sending a few hundred)

Im sending out an order conformation for recipients via the simple mail function built into PHP, and this works fine. It's a "nice" email set up in tables and a few styles with the details in it ...
2
votes
3answers
6k views

email template position absolute?

Is it safe to use position:absolute in a email template?
2
votes
2answers
1k views

How to embed functionality into HTML email?

We want to let users click a thumbs up or thumbs down button from an HTML email, without causing the clicking to open a browser window. Is there a way to essentially embed limited web functionality ...
2
votes
8answers
7k views

Outlook 2007 receives html mail as source with headers, others MUAs work fine. Why?

I have a couple of simple forms that send an html-only email. Most clients (Gmail, Lotus Notes 8, hotmail/live, windows live mail, outlook express) receive the emails just fine, but Outlook 2007 does ...
1
vote
2answers
59 views

trying to send a basic email to folder

I am trying to send a basic email to a folderbut howerver, even though I do receive the email, the body is missing completely. private void MailReport() { string to = "arianul@gmail.com"; ...
1
vote
5answers
2k views

How do I send email with JavaScript without opening the mail client?

I'm writing a HTML page with a registration button that should just silently send an email without opening the local mail client. Here is my HTML: <form method="post" action=""> <input ...
1
vote
3answers
259 views

Python Variable in an HTML email in Python

How do I insert a variable into an html email I'm sending with python? The variable I'm trying to send is code. Below is what I have so far. text = "We Says Thanks!" html = """\ <html> ...
1
vote
3answers
606 views

How to deal with long links in HTML-emails

I've searched the web on this and I can find two solutions: Use a URL-shortner. Use brackets < > to allow insertion of whitespace. This only applies to plain-text emails. I'm sending HTML ...
1
vote
1answer
283 views

Sending HTML email in PHP

I am working on an HTML page where i need to send confirmation by HTML email using PHP. I don't have much experience in PHP as i occasionally work on PHP. I am able to send the HTML email using PHP ...

1 2