0
votes
4answers
22 views
How to send email from a java web app
I have a java web application sitting on Tomcat/Apache.
I have a form which has to send email. What is the best way to get this working.
-1
votes
2answers
60 views
Working with DataTables
These are two records which exist in a table:
ibrahim_balouch
ibrahim.tasal
I want to send an email to ibrahim.tasal. Here is my code:
string user2 = dt1.Rows[1].ItemArray[0].ToString();
mail.Cc = …
43
votes
31answers
6k 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:
…
2
votes
1answer
56 views
Regular Expression returning false, why?
I have the following regular expression email validator:
@"^(([\w-]+.)+[\w-]+|([a-zA-Z]{1}|[\w-]{2,}))@"
+ @"((([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9]).([0-1]?
…
1
vote
4answers
136 views
Testing Methods in JUnit Prevents Email Sending
I'm developing in Java and using JUnit to test some of my methods. Some of my methods send emails. The emails are actually sent by a separate thread that is spawned. The problem is that whenever I …
1
vote
2answers
44 views
Sending illustrated (Christmas card) emails
A client of ours wants to send all his clients an illustrated email for Christmas (yes, I know, and I know).
I know that email HTML is a very different beast to browser HTML, and there are a lot of …
3
votes
8answers
7k views
How can I send mail from an iPhone application
Hi All,
Good morning,
Can anybody help me out in following problem:
I want to send an Email from my iPhone application. I have heard about the fact that iPhone SDK doesn't have any mailing API to …
0
votes
5answers
30 views
Difference in regex email validation between jQuery plugin and org.springmodules.validation
Greetings!
I have a Spring app and a form getting validated on the back and front ends.
On the back end I'm using annotation based validation for the EMAIL field with help from …
1
vote
4answers
72 views
Sending Emails C#
Dear all,
I am writing a application which need to open a new mail dialog, upon clicking on a button on it. Application users uses different mail clients like MS Outlook, Thunder Bird, etc...
…
0
votes
3answers
19 views
Sending/Recieving/Interepreting Dynamic Email
Hey guys here's a good question..
I wanted to write a program that can receives an email, interprets what the message is, then performs a calculation, then responds based on the email received.
For …
0
votes
6answers
42 views
Disable PHP mailing on Mac OS?
I'm developing a web application in PHP, and my Macbook, running Snow Leopard, is actually sending emails when PHP's mail() function is called. It's emailing customers, and that's BAD.
I COULD …
7
votes
5answers
186 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 …
1
vote
2answers
19 views
How can I return the primary email address associated with the logged on user’s current Outlook profile?
I know, it's a bit weird asking for a query to tell me my own email address right, I'll explain further...
I'm writing a COM add-in for Outlook 2007. One of the subs generates and sends an email to a …
0
votes
0answers
8 views
how to cut email template for outllook from psd
hello. i am having a hardtime cutting up a layout for outlook. it's an email template.
it looks fine on gmail, but the width stretches when i check it in outlook 07. anyone have any tips on how i …
1
vote
2answers
38 views
looking at how python implements pop3/mime/imap/etc, could I write a c# version? [closed]
looking at how python implements pop3/mime/imap/etc (assuming its open sourced?), could I write a c# version?
(I realize there might be c# open source versions of the above, just asking if it would …
