70
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.
…
51
votes
32answers
7k 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:
…
21
votes
14answers
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 …
20
votes
13answers
828 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):
…
19
votes
11answers
708 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 …
18
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% …
14
votes
19answers
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 …
13
votes
16answers
5k 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 …
12
votes
4answers
2k views
Maximum length of a valid email id
What is the maximum length of a valid email id
12
votes
6answers
4k 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
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 …
10
votes
20answers
884 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 …
9
votes
10answers
358 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
10answers
643 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 …
