Questions tagged [email-client]

For questions relating to implementing email clients, or for code extending or interacting with an existing mail client.

An email client, email reader, or more formally, mail user agent (MUA) is a computer program used to manage a user's email.

The term can refer to any system capable of accessing the user's email mailbox, regardless of it being a mail user agent, a relaying server, or a human typing on a terminal. In addition, a web application that provides message management, composition, and reception functions is sometimes also considered an email client, but more commonly referred to as webmail.

Popular email clients include Microsoft Outlook, Pegasus Mail, Mozilla's Thunderbird, and Apple Inc.'s Mail.

679 questions
13
votes
1 answer

Best way to include images in HTML email?

I'm creating some HTML emails with images included. For each email the size of the images + email is less than 150kb. I'm trying to make them work well for the main clients mentioned here…
Jon Cox
  • 10,622
  • 22
  • 78
  • 123
12
votes
12 answers

Does your email client let you add custom headers programmatically?

I'm working on an anti-spam project (centmail) that involves having the sender use a client plugin that adds a custom header (as well as a signature, but that part's easier). The general problem is to add an email header to your outgoing mail where…
dreeves
  • 26,430
  • 45
  • 154
  • 229
11
votes
1 answer

verify if email is delivered successfully nodemailer (sails.js)

I'm using nodemailer module to send email in my sails.js project. Now i'm wondering if there is a way that i could know if the email is delivered successfully or the email is somehow failed due to some attachment or may be wrong email address. how…
Ahsan Hussain
  • 952
  • 4
  • 21
  • 42
11
votes
8 answers

Gmail shows download icon on images of HTML Email

We have a Html Builder, that allows you to create responsive html for emails. We are using a third party engine to send the emails in bulk. The problem is, when email is being opend in gmail inbox, it shows download icon on some of images (not all),…
Pankaj Dubey
  • 796
  • 3
  • 8
  • 32
9
votes
2 answers

How to wait for email intent to finish and get result?

In my Android app, I am able to programmatically open up the default email editor with To, Subject, and Message using the following: Intent emailIntent=new Intent(Intent.ACTION_SEND); emailIntent.putExtra(Intent.EXTRA_EMAIL,…
Nicholas
  • 447
  • 1
  • 4
  • 18
9
votes
3 answers

How to avoid launching browser when a link within email message is clicked

Currently, part of my application sends out emails to users reminding them of events or tasks. When clicking a MarkComplete link in the email client, an HTTP Get request is made to my ActionHandler.ashx (an HTTPHandler) where the QueryString…
John Adams
  • 4,773
  • 25
  • 91
  • 131
9
votes
7 answers

Accessing an Exchange Server without Outlook

Is there a method of accessing an Exchange server that does not have IMAP or POP3 enabled without Outlook? It does not appear that Outlook Express supports Exchange (only IMAP and POP3).
Thomas Owens
  • 114,398
  • 98
  • 311
  • 431
8
votes
1 answer

How do I now (since June 2022) send an email via Gmail using a Python script?

I had a Python script which did this. I had to enable something in the Gmail account. For maybe 3 years the script then ran like this: import smtplib, ssl ... subject = 'some subject message' body = """text body of the email""" sender_email =…
mike rodent
  • 14,126
  • 11
  • 103
  • 157
8
votes
3 answers

Is it possible to disable the iPhone's automatic hyperlinks?

We send out a notification email whenever we have "phishing" emails reported to us. In these emails, we include a copy-paste of the text inside the original phishing email as a sample of what is reported to us. Our code strips all hyperlinks out of…
Michael Irigoyen
  • 22,513
  • 17
  • 89
  • 131
8
votes
8 answers

Line break in body of mailto: link

I want to create a “Forward this to a friend” link below a blog post that opens my email client with a prepared message. I can get it to work for a single-line message, but I’d like to be able to break lines inside the message body. How can I do…
Stefaan
  • 184
  • 4
  • 6
  • 16
8
votes
2 answers

Gmail cleans html on email forward?

I've noticed that when you forward an html email from Gmail (not sure about other providers), the html structure changes in the process. The forwarded html loses all the ids declared inside the original html, also some other 'cleaning' happens on…
prettyvoid
  • 3,446
  • 6
  • 36
  • 60
8
votes
1 answer

How to stack columns in responsive email template?

I'm trying to have to columns display side by side on large screens and display stacked on top of each other on mobile devices but I've been unable to so far, I tried following the same approach ZURB used on their templates where they added to divs…
Javier Villanueva
  • 3,886
  • 13
  • 48
  • 80
7
votes
1 answer

Why don't email clients use modern rendering engines?

It's 2017 and we are still stuck with HTML tables to create rich emails. Why? It seems reasonable to leverage the hard work behind the modern browser engines (ie. blink), when all you want is to render an HTML document properly.
user5510778
7
votes
7 answers

Outlook Web App "display :none" not working

I am designing a responsive email template and i have a slight problem on Outlook Web app. I found out that it removes classes so there is no point in using media queries so i try to hide a tr element like this :
mathew
  • 185
  • 4
  • 20
7
votes
1 answer

is there a style reset for email clients?

I design my emails with the general styling rules outlined elsewhere on the web (i.e. Campaign Montior's CSS guide http://www.campaignmonitor.com/css/) and apply only inline styles (I find this more reliable than placing them in the section…
rwcorbett
  • 473
  • 5
  • 12
1
2
3
45 46