Tagged Questions

HTML used to create emails

learn more… | top users | synonyms

15
votes
4answers
7k views

Sending HTML email in Python

How can I send the html content in the email using python? I can send simple text.
11
votes
4answers
1k views

When creating HTML emails, should we use html, head, body tags?

In my email views, I usually just do something like... <dl> <dt>Name</dt> <dd>Value</dd> </dl> Should I be doing it like this? <html> ...
8
votes
4answers
196 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 ...
7
votes
6answers
231 views

Is it sensible to send HTML-only email these days?

I want my web app to send certain mails as HTML in order to include product images. I could of course provide a text/plain alternative as well, but is it worth the effort in this day and age? Are ...
7
votes
1answer
553 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); ...
6
votes
2answers
96 views

What's the latest on HTML Email best practice?

I've been asked to build something that will generate HTML Emails. The last time I created one of these was about three years ago, and so I was wondering if the warnings about using tables, nested ...
6
votes
5answers
369 views

HTML E-mail: Must you send an alternate plain text view as well?

When sending HTML e-mail, I understand that it's a best practice to send a plain text version as well. But my question is: Must you send a plain text version as well? What are the repercussions?
6
votes
8answers
269 views

Looking for a crappy email client

I wrote some code to send email as both HTML & Text, and I am having having trouble testing it. On Thunderbird and Outlook, there is an option to view as plain-text, however I have a feeling that ...
6
votes
4answers
2k 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 ...
5
votes
6answers
469 views

Vote on Pros and Cons of Java HTML to XML cleaners

I am looking to allow HTML emails (and other HTML uploads) without letting in scripts and stuff. I plan to have a white list of safe tags and attributes as well as a whitelist of CSS tags and value ...
5
votes
1answer
905 views

How to pass dynamic data to email template desgined on sendgrid webapp ? :-| Sendgrid

I integrated sendgrid email service with my sample application. & also able to send email to user. But how to pass dynamic data to Email template design on sendGrid webapp? is there any way to ...
5
votes
2answers
1k 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
7answers
863 views

What does an HTML E-Mail look like?

I am trying to automatically build html emails and am trying to figure out whether there are standards and what attributes in an email work and which have to exist. Do I need a ? And if no does there ...
4
votes
1answer
88 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 ...
4
votes
1answer
955 views

How to use the Zend Framework partial view helper outside of a controller or view?

I would like to create a custom class that will generate an HTML email. I want the content of the email to come from an "email view scripts" directory. So the concept will be that I can create an HTML ...
4
votes
1answer
798 views

Trouble sending html in email with Pony gem

I've found this gem to be a great and easy way to send mail but I can't seem to send any html in it. If I write the following: Pony.mail( :to => message[:to], :from => @account[:from], ...
4
votes
8answers
1k views

ColdFusion - Sending out a pretty email, mint style

I've used ColdFusion for sending text emails for years. I'm now interested in learning how to send those pretty emails you see from companies like Mint. Anyone know of a good ColdFusion tutorial to ...
4
votes
2answers
1k views

Is it possible to put a page break into an HTML email?

I know it's possible to use CSS to add page breaks to web pages, for when they're printed. I also know CSS support in HTML emails is poor. So, is there a way to generate a page break when an HTML ...
3
votes
3answers
851 views

Possible to send SQL Reporting Services report in email format with a duplicate pdf attachment?

Our system sends a "Daily Update" email via Reporting Services to all users each morning. If people are on a computer there's no issue. But, for users on the go, some mobile device email clients ...
3
votes
3answers
201 views

Webmail: HTML headers

HTML e-mails are a complex beast. Deciding what to send (as the sender) and what to display (as the recipient) is tricky and potentially dangerous. On the recipient side of things, we have webmail ...
3
votes
3answers
84 views

Should I avoid HTML-formatted notification e-mails?

A few years ago, it seemed to be accepted wisdom to avoid HTML formatting in favor of plain text when sending notification e-mails to users, because a) not all e-mail readers supported HTML and b) ...
3
votes
2answers
408 views

small line-heights rendering incorrectly in MS Outlook

From doing a little research I've found that MS Outlook will not render line-height in an HTML email at anything less than 16px. This is a bit of a problem as I really need it a fair amount smaller. ...
3
votes
2answers
104 views

HTML Emails | Available Tutorials on coding like it's 1999

When I started coding I skipped over tables and went directly to CSS/div based layouts, it had just started and I didn't see the need to learn something (ie tables layout) that was on it's way out. I ...
3
votes
3answers
1k views

Why does font-size CSS not work on iPad HTML emails?

I'm working on an HTML email and have been running to a problem on the mail client on the iPad only. It seems that setting inline CSS to "font-size: 12px" or any other size does not work on the mail ...
3
votes
5answers
285 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
3answers
2k 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 ...
3
votes
7answers
422 views

Support email format: plain-text or HTML?

I have to send planned support notification emails on system events (service window, alerts, etc). I see that most of such emails I receive from my vendors are in plain text format. I wonder should I ...
3
votes
4answers
1k views

why gmail blocked the css?

I used css in my email and send out. when I received the email in gmail, all the css are disabled, but when i retrieve the email in thunderbird or outlook, everything is OK. Anyone has good idea ? ...
2
votes
1answer
29 views

Error using rails Mail_form gem: “uninitialized constant Mailform”

So, I've checked all the existing answers to similar questions here on stackoverflow and elsewhere, but cannot get the mail_form gem to work as advertised. Here's the setup: I'm trying to create a ...
2
votes
2answers
103 views

Is there a better way then using Lynx to convert HTML to Plaintext reliably in PHP

I want to convert a HTML file with a table based layout to plaintext in order to send a multipart email via PHP. I have tried a few different pre built classes / functions that I've found on SO, but ...
2
votes
1answer
50 views

Sharing colors between SASS files and Rails erb templates

I'm working on an email newsletter using ActionMailer that's associated to our Rails 3.0.7 application. So against all my instincts, I'm using inline styles like mad since that seems to be the only ...
2
votes
1answer
102 views

How to send a multipart email with both plain text and HTML in Android?

I'm trying to find out the cleanest way in Android to send a multipart email via an Intent. The email is supposed to include a plain-text part and an HTML part. Thank you.
2
votes
1answer
152 views

Link style not appearing on Lotus Notes 8.5 (Email client)

I am making a HTML email and testing using Litmus, however Lotus Notes 8.5 does not appear to be displaying any link styles. I am using pretty old school methods to make sure it works in older mail ...
2
votes
2answers
92 views

Contact form submit script - HTML email problem

I have a contact form script and when the user submits it, they get an email and I get one. But there's a problem with the "message" textarea in the HTML email. It puts it all in one line. See how I ...
2
votes
1answer
544 views

Sending HTML email using SAP Workflow “Send Mail” activity

We have a SAP workflow which uses "Send Mail" activity to send an email to relevant users. I want to include hyperlinks in this email so that the user can be taken to particular site upon clicking ...
2
votes
4answers
158 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
76 views

asp.net obtain copy of rendered HTML

I am creating a website that will offer the option to email the user a copy of dynamic, code-behind, calculation-driven content on a final page of a website. To send an email as of now I obtain the ...
2
votes
2answers
63 views

A clean technique or library to generating emails in Java

Currently our application generates emails for clients via classic "string smashing" mixed in with some String.replace calls. Does somebody have a suggestion for an easy/elegant/robust way to ...
2
votes
3answers
465 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 ...
2
votes
2answers
585 views

Get rid of “Show Quoted Text” in Gmail

Is there a way to code HTML emails in a way that will NOT show the "show quoted text" and will NOT turn text to purple? The web app I'm developing sends out a notification each time a user gets a ...
2
votes
2answers
119 views

Gmail is spamming our welcome email only

Our web app sends a confirmation email when a person signs up. This message is getting in the spam folder in gmail only. All our other emails we send out are correctly received by the end user in ...
2
votes
2answers
393 views

CSS support in the Evolution e-mail client

This question may be more appropriate for another SE site, if so apologies. Basically we are writing an HTML email template. It's just a simple table layout with some td styling and text styling (a's, ...
2
votes
3answers
353 views

How can I create a max-width and max-height effect on an image sent in an HTML email?

My app sends out HTML emails containing one or more images of unknown size and width/height ratios. The effect I want is <img style="max-width: 200px; max-height: 200px;" src="..." /> ...
2
votes
5answers
350 views

CSS-to-HTML Email converter

I'm on a project where we're going to be sending HTML emails. I've done dozens of projects where we send plaintext emails but for some unknown reason, I've never had to do HTML emails. I "grew up" ...
2
votes
2answers
570 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
315 views

Prevent hyperlinks in HTML emails (namely Outlook)

We've got some HTML emails that get sent out that show email addresses our service has blocked. When viewing the email in Outlook (and presumably in other clients as well) these plain-text email ...
2
votes
2answers
244 views

Tracking my Emails

I make use of a small transparent image in my email campaigns to check when it was read which works well for me. I was reading a blog post the other day that said you can also track how long a person ...
2
votes
1answer
469 views

system.net.mail isbodyhtml = true vs two AlternateViews pros/cons

Here is the use case: I am making an app that will email HTML Newsletters. The app will also email a plain text version of the newsletter as an alternate view. The way I see it there are two ways of ...
2
votes
2answers
309 views

How to change email FROM address field?

I was trying to change FROM field with Name and Email address. But When I get email It is comaing like below My network <commity@company.com [My network <commity@company.com] Mycode is like ...
2
votes
3answers
282 views

Issue with Font and underline in HTML email

Wonder if anyone can help - I am testing an HTML email in various clients, it has a arial black set as a font, and the customer wanted the the underline taking off the link. All fine and dandy in ...

1 2 3 4 5 7