Tagged Questions

Method of exchanging digital messages from an author to one or more recipients.

learn more… | top users | synonyms (2)

307
votes
37answers
59k views

How to use a regular expression to validate an email addresses?

Over the years I have slowly developed a regular expression that validates MOST email addresses correctly, assuming they don't use an IP address as the server part. Currently the expression is: ...
170
votes
18answers
15k views

How do you make sure email you send programmatically is not automatically marked as spam?

This is a tricky one - and I've always relied on techniques such as permission-based emails (i.e. only sending to people you have permission to send to) and not using blatantly spamish terminology. ...
107
votes
17answers
60k views

Validate email address in Javascript?

How can an email address be validated in Javascript? Though this solution may be simple, I'm sure this is one of those useful things that people will be Googling for and deserves its own entry on the ...
92
votes
8answers
47k views

Sending email in .NET through Gmail

Instead of relying on my host to send email, I was thinking of sending the messages though my Gmail account. The emails are personalized emails to the bands I play on my show. Is it possible to do?
77
votes
4answers
17k views

Maximum length of a valid email address

What is the maximum length of a valid email address? Is it defined by any standard?
65
votes
8answers
62k views

How can I send mail from an iPhone application

I want to send an email from my iPhone application. I have heard that the iOS SDK doesn't have an email API. I don't want to use the following code because it will exit my application: NSString *url ...
60
votes
9answers
104k views

Send email using GMail SMTP server from PHP page

I am trying to send an email via GMail's SMTP server from a PHP page but I get this error: authentication failure [SMTP: SMTP server does no support authentication (code: 250, response: ...
44
votes
18answers
4k views

Best way to obfuscate an e-mail address on a website?

I've spent the past few days working on updating my personal website. The URL of my personal website is (my first name).(my last name).com, as my last name is rather unusual, and I was lucky enough to ...
42
votes
9answers
9k views

Dummy SMTP Server for testing apps that send email

I have a lot of apps that send email. Sometimes it's one or two messages at a time. Sometimes it's thousands of messages. In development, I usually test by substituting my own address for any ...
41
votes
8answers
46k views

Sending Email in Android using JavaMail API without using the default android app(Builtin Email application)

I am trying to create a mail sending application in android, If I use Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); This will launch the builtin application of android, I'm ...
41
votes
21answers
33k views

Can I set up HTML/Email Templates with ASP.NET?

I'm working on a site that will send out a significant number of emails. I want to set up both header and footer text, or maybe even templates to allow the users to easily edit these emails if they ...
40
votes
14answers
2k views

What are the pros and cons of using an email address as a user id?

I'm creating a web app that requires registration/authentication, and I'm considering using an email address as the sole user id. Here are what I see as the pros and cons (updated with responses): ...
38
votes
14answers
3k views

What guidelines for HTML email design are there?

What guidelines can you give for rich HTML formatting in emails while maintaining good visual stability across many clients and web based email interfaces? An unrelated answer on a question on Stack ...
32
votes
7answers
669 views

Is there a webservice or API to help me read email contacts?

I am trying to add a feature in my website to let the user invite his email contacts to visit the website, the same as twitter and facebook are doing. I got bored from trying to implement this feature ...
30
votes
14answers
42k views

How to check if an email address exists without sending an email?

I have come across this PHP code to check email address using SMTP without sending an email. Has anyone tried anything similar or does it work for you? Can you tell if an email customer / user enters ...
29
votes
5answers
6k views

sendgrid vs postmark [closed]

I am evaluating 3rd party services to handle our webapps email. Requirements: Tracking bounces HTML email Customer headers Incoming email queue (Post email to some URL?) Spam filtering of incoming ...
29
votes
4answers
17k views

What is the email subject length limit?

How many characters are allowed to be in the subject line of Internet email? I had a scan of The RFC for email but could not see specifically how long it was allowed to be. I have a colleague that ...
29
votes
15answers
49k views

Sending email through Gmail SMTP server with C#

For some reason the accepted answer or any others don't work for me for "Sending email in .NET through Gmail". Why would it not work? UPDATE: I have tried all the answers (accepted and otherwise) in ...
29
votes
21answers
5k views

Regexp recognition of email address hard?

I recently read somewhere that writing a regexp to match an email address, taking into account all the variations and possibilities of the standard is extremely hard and is significantly more ...
27
votes
8answers
44k views

Read MS Exchange email in C#

I need the ability to monitor for and read email from a particular mailbox on a MS Exchange Server (internal to my company). I also need to be able to read the sender's email address, subject, message ...
26
votes
16answers
3k views

How can I apply David Allen's “Getting Things Done” as a programmer?

Off and on I have read David Allen's "Getting Things Done" productivity books but never really implemented it. What tools do you use to track tasks and projects? How do you organize tasks when 95% ...
24
votes
5answers
624 views

Sending solicited mass email

Our company does work environment surveys, and these surveys are filled in online. All participants are sent a link to their survey in an email (personal code included). Some of our clients have ...
24
votes
6answers
21k views

Testing HTML email rendering

Are there any good tools to easily test how HTML email will look across different email clients? I prefer something with instant feed back rather than a submit and wait service like ...
24
votes
5answers
4k views

Parse email content from quoted reply

I'm trying to figure out how to parse out the text of an email from any quoted reply text that it might include. I've noticed that usually email clients will put an "On such and such date so and so ...
23
votes
17answers
5k views

Effective method to hide email from spam bots

On my home page I'm using next method to hide my email from spam bots: <a href="admin [at] example.com" rel="nofollow" onclick="this.href='mailto:' + 'admin' + '@' + ...
22
votes
3answers
13k views

Is it possible to add an HTML link in the body of a MAILTO link

I have not had to mess with mailto links much. However I now need to add a link in the body of a mailto if it is possible. Is there a way to add a link or to change the email opened to an html ...
21
votes
6answers
8k views

What's the state of the art in email validation for Rails?

What are you using to validate users' email addresses, and why? I had been using validates_email_veracity_of which actually queries the MX servers. But that is full of fail for various reasons, ...
21
votes
7answers
6k views

What tools to automatically inline CSS style to create email HTML code?

When you take a look at http://www.campaignmonitor.com/css/ you learn that you need to embed inline styles in your HTML, in order for your email to be read in any mail client. Do you know any tools ...
21
votes
6answers
12k views

git push email notification

How do I configure the appropriate git hook to send a summary email whenever a set of changes is pushed to the upstream repository?
20
votes
10answers
16k views

What is the best Java email address validation method?

What are the good email address validation libraries for Java? Are there any alternatives to commons validator?
19
votes
5answers
9k views

iTextSharp - Sending in-memory pdf in an email attachment

I've asked a couple of questions here but am still having issues. I'd appreciate if you could tell me what I am doing wrong in my code. I run the code above from a ASP.Net page and get "Cannot Access ...
18
votes
5answers
4k views

Adding a Google Plus (one or share) link to an email newsletter

I am trying to find a way to embed a share/+1 link for Google+ in a Newsletter, much like the Facebook share and tweeter tweet links can be embedded in a newsletter, which can be achieved with the ...
18
votes
4answers
455 views

Why shouldn't I use PHP's mail() function?

The general opinion when it comes to sending email messages in PHP is to stay clear of PHP's built-in mail() function and to use a library instead. What I want to know are the actual reasons and ...
17
votes
4answers
4k views

Creating email templates with Django

I want to send HTML-emails, using Django templates like this: <html> <body> hello <strong>{{username}}</strong> your account activated. <img src="mysite.com/logo.gif" /> ...
17
votes
1answer
6k views

How to save MailMessage object to disk as *.eml or *.msg file

How do I save MailMessage object to the disk? The MailMessage object does not expose any Save() methods. I dont have a problem if it saves in any format, *.eml or *.msg. Any idea how to do this?
17
votes
21answers
2k views

Making email addresses safe from bots on a webpage?

When placing email addresses on a webpage do you place them as text like this: joe.somebody@company.com or use a clever trick to try and fool the email address harvester bots? For example: HTML ...
16
votes
2answers
358 views

How do I send signed emails from ActionMailer in Rails 3?

Using Rails 3 I want to use an X.509 certificate to sign parts of emails. There is a currently existing answer for Rails 2 at How do I send signed emails from ActionMailer? but it doesn't work on ...
16
votes
7answers
22k views

Trying to attach a file from SD Card to email

I am trying to launch an Intent to send an email. All of that works, but when I try to actually send the email a couple 'weird' things happen. here is code Intent sendIntent = new ...
16
votes
6answers
7k views

Sending E-mail using C#

I need to send email via my C# app. I come from a VB 6 background and had a lot of bad experiences with the MAPI control. First of all, MAPI did not support HTML emails and second, all the emails ...
16
votes
7answers
24k views

Email Address Validation for ASP.NET

What do you use to validate an email address on a ASP.NET form. I want to make sure that it contains no XSS exploits. This is ASP.NET 1.1
15
votes
7answers
6k views

Check unread count of Gmail messages with Python

How can I check the number of unread Gmail message in my inbox with a short Python script? Bonus points for retrieving the password from a file.
15
votes
2answers
15k views

“The remote certificate is invalid according to the validation procedure.” - Please help

I'm getting this error "The remote certificate is invalid according to the validation procedure." whenever I try to send e-mail using gmail's SMTP server in my C# code. Can someone point me to the ...
14
votes
3answers
14k views

Android multiple email attachments using Intent

I've been working on Android program to send email with an attachment (image file, audio file, etc) using Intent with ACTION_SEND. The program is working when email has a single attachment. I used ...
14
votes
10answers
20k views

Generating HTML email body in C#

Is there a better way to generate HTML email in C# (for sending via System.Net.Mail), than using a Stringbuilder to do the following: string userName = "John Doe"; StringBuilder mailBody = new ...
14
votes
11answers
1k views

Method for email testing

I am writing a program that will be emailing reports out many (~100) clients which I want to test before I spam everyone. I want to do a test run against my production data and actually send the ...
13
votes
3answers
2k views

Send email using System.Net.Mail through gmail. (C#)

I want to send a email through gmail server. I have put the following code but it is getting stuck while sending. Any idea please.... MailMessage mail = new MailMessage(); mail.From = new ...
13
votes
5answers
4k views

PHP: How to avoid a system generated e-mail going into spam?

I've written code for sending an e-mail using php. I don't want to go that mail into spam. How can I avoid going that mail into spam?
13
votes
8answers
15k views

What characters are allowed in email address?

I'm not asking about full email validation. I just want to know what are allowed characters in user-name and server parts of email address. This may be oversimplified, maybe email adresses can take ...
13
votes
2answers
6k views

What is the behavior difference between return-path, reply-to and from?

On our mailing application we are sending emails with the following header: FROM: marketing@customer.com TO: subscriber1@domain1.com Return-PATH: bouncemgmt@ourcompany.com The problem that we are ...
13
votes
12answers
2k views

Why are people using regexp for email and other complex validation?

There are a number of email regexp questions popping up here, and I'm honestly baffled why people are using these insanely obtuse matching expressions rather than a very simple parser that splits the ...

1 2 3 4 5 180