80
votes
17answers
3k 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.
…
64
votes
32answers
8k views
What is the best regular expression for validating 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:
…
26
votes
14answers
936 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):
…
21
votes
16answers
1k views
Best way to obfuscate an e-mail address on a website?
Hello all. 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 …
19
votes
16answers
1k 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% …
19
votes
11answers
783 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 …
17
votes
17answers
6k views
Can I set up HTML/Email Templates in C# on 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 …
16
votes
20answers
2k 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 …
14
votes
4answers
2k views
Maximum length of a valid email id
What is the maximum length of a valid email id
12
votes
20answers
947 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 …
12
votes
7answers
5k views
Sending Email in C#.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. Has anyone had success …
11
votes
10answers
691 views
Best Practices and Etiquette for Setting up Email Notifications
If you were going to set up a Email Alerts for the customers of your website to subscribe to, what rules of etiquette ought to be followed?
I can think of a few off the top of my head:
Users can …
11
votes
12answers
1k 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 …
10
votes
6answers
2k views
Sending E-mail using C#
Hi,
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 …
9
votes
10answers
389 views
What are the pros and cons of using an email as a username?
You know most login forms use user & pass.
And some go the email & pass. What are the pros and cons of them? Here is what I have thought of.
PROS of email
one less thing to remember (as …
9
votes
13answers
6k 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 …
9
votes
12answers
2k views
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 …
9
votes
13answers
3k views
Validate email address in Javascript?
What's the best way to validate an email address 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 …
8
votes
5answers
236 views
How to add one-click unsubscribe functionality to email newletters?
I'd like to customize the "unsubscribe" links in our email newsletters so that they remove the recipient with a single click. Right now they just point to a generic page where the user has to enter …
8
votes
5answers
745 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 …
8
votes
2answers
1k views
Is this the correct way to send email with PHP?
I'm a bit worried if this function sends emails that can be recognized correctly on the majority of email and webmail clients the way it should, specifically I'm most concerned about this doubts:
…
8
votes
8answers
712 views
What is the best Perl module for sending email?
For years I've been piping out to sendmail in my Perl programs to send email, but I have the strong sense I ought to use a module. It would make me feel less dirty.
Care to recommend me one module …
8
votes
10answers
610 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 …
8
votes
6answers
940 views
Avoid being blocked by web mail companies for mass/bulk emailing ?
Our company is sending out a lot of emails per day and planning to send even more in future. (thousands) Also there are mass mailouts as well in the ten thousands every now and then.
Anybody has …
7
votes
7answers
107 views
What methods exist for setting up a large email notification system?
My company has a website built with PHP. We use the built-in PHP email functionality to send thousands of emails to subscribers on a daily basis.
This is a terrible idea. It chokes out our server, …
7
votes
5answers
678 views
Sending email through a Google Apps account is working locally, but not on my web server…
Related:
Send Email via C# through Google Apps account
My question is the same so I implemented Koistya's solution as follows. The heartbreak is that it works beautifully on my dev laptop but …
7
votes
5answers
1k 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.
7
votes
7answers
320 views
How can you give users confidence that your application has no malicious intent?
I am a FireFox user, and I recently installed the GMail notifier add-on. When you first install the add on, it requests your GMail address and password, and will then use this to login to your Gmail …
7
votes
8answers
635 views
I ALMOST understand how email works, but I’m missing something.
For the past few weeks, I've been trying to learn about just how email works. I understand the process of a client receiving mail from a server using POP pretty well. I also understand how a client …
7
votes
9answers
1k views
How to send email from a program _without_ using a preexisting account?
I'd like my program to be able to email me error reports. How can I do this without hard-coding a username/password/SMTP server/etc. into the code? (Doing so would allow users to decompile the program …
6
votes
4answers
108 views
What should i know about sending emails in a background thread? ASP.NET
I have a thread running in the background that will sleep and pull data from the database when something wakes it up. I am sending the emails using google apps using SmtpClient (code below).
I wanted …
6
votes
5answers
464 views
ASP.NET MVC Email
Is their a solution to generate an email template using an ASP.NET MVC View without having to jump through hoops.
Let me elaborate jumping through hoops.
var fakeContext = new …
6
votes
2answers
1k views
Problem sending multipart mail using ActionMailer
Hello,
I'm using the following code to send emails in rails:
class InvoiceMailer < ActionMailer::Base
def invoice(invoice)
from CONFIG[:email]
recipients invoice.email
…
6
votes
5answers
348 views
Running Junit Email Tests Without Emails Actually Going Out
I want to run unit tests (Junit) on some model classes that typically will send emails confirming that things happened. Is there a mock email server that you can use with unit tests that will let you …
6
votes
7answers
701 views
How do I send an e-mail in Java?
I need to send e-mails from a servlet running within Tomcat. I'll always send to the same recipient with the same subject, but with different contents.
What's a simple, easy way to send an e-mail in …
6
votes
8answers
408 views
Guidelines for accepting email messages as input to application
A number of applications have the handy feature of allowing users to respond to notification emails from the application. The responses are slurped back into the application.
For example, if you …
6
votes
6answers
309 views
CSS on Email
Hi
Has anyone found a good way of embeding CSS in a programatically produced email. The best way I have found is to put the style code into a resource file and call it into the code.
An emample …
6
votes
8answers
2k views
How do I send email to my Gmail account using SMTP and Perl?
I don't want to use sendmail to send an email but would prefer to use SMTP. How can I use Perl to send an email to my GMAIL account?
6
votes
4answers
397 views
Delaying the sending of emails in C#
We are writing a feature to send a reminder email to customers in x number of days and just wondered if it was possible to delay the sending of the emails similar to how you can in Outlook (New Mail > …
6
votes
4answers
355 views
How do I upper case an email address?
I expect this should be a pretty easy question. It is in two parts:
Are email addresses case sensitive? (i.e. is foo@bar.com different from Foo@bar.com?)
If so, what is the correct locale to use for …
6
votes
10answers
1k views
regex for email validation [closed]
I have written the regex below for a really simple email validation. I plan to send a confirmation link.
/.*@[a-z0-9.-]*/i
I would, however, like to enhance it from the current state because a …
6
votes
14answers
974 views
Effective method to hide email from spam bots
Hi. 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' + '@' + 'example.com'">
Contact …
6
votes
8answers
1k views
Receive and send emails in python
How can i receive and send email in python? A 'mail server' of sorts.
I am looking into making an app that listens to see if it recieves an email addressed to foo@bar.domain.com, and sends an email …
6
votes
1answer
150 views
Algorithm for organizing emails into threads?
Are there any named/famous/particularly good algorithms for organizing email messages into threads?
I'm looking to add a feature to my site similar to Google Groups (and other mailing lists) and I …
6
votes
17answers
2k views
What is the best way to organise e-mails in MS Outlook?
Every software development professional (and especially project managers) has to deal with a never ending stream of e-mails. What is the best way of organising them in MS Outlook?
Obviously some …
6
votes
2answers
538 views
How to open a new email, and assign subject, using .NET Compact Framework
Basically I'm trying to accomplish the same thing that "mailto:bgates@microsoft.com" does in Internet Explorer Mobile.
But I want to be able to do it from a managed Windows Mobile application. I …
6
votes
8answers
985 views
send e-mail and check status
Hi,
Using Java mail, I would like to send an e-mail and check the status. Possible statuses include:
Hard-bounce: No mail server found
Soft-bounce: Mail server found, but account not found
Success
…
6
votes
3answers
261 views
What is the best way to send a HTML email from Asp.net MVC?
I would like to be able to render a view and send it as an email, similar to what can be done with Ruby on Rails. What is the best way to do this?
EDIT: My solution so far is to use a templating …
6
votes
13answers
703 views
What emails clients are being used out there?
This is not "exactly" a programming question, but it's highly related. We are writing an app that sends out email invitations for a client (no, it's not spam). Their designer gave us an HTML and CSS …
6
votes
8answers
647 views
Is it worth encrypting email addresses in the database?
I'm already using salted hashing to store passwords in my database, which means that I should be immune to rainbow table attacks.
I had a thought, though: what if someone does get hold of my …
