0
votes
5answers
43 views
In asp.net is there a function to validate an email address?
I've noticed that if you try to send an email to an invalid address, an exception is raised:
MailAddress To=new MailAddress("invalidemailaddress","recipientname");
throws:
"The specified string …
2
votes
9answers
65 views
SQL: Sorting By Email Domain Name
What is the shortest and/or efficient SQL statement to sort a table with a column of email address by it's DOMAIN name fragment?
That's essentially ignoring whatever is before "@" in the email …
1
vote
5answers
80 views
md5 for emails too?
I'm creating a MySQL database with registered users, and I'm thinking to use md5 not only for passwords but for e-mails too.
I think this choice can improve user security, but I'm not yet an expert …
0
votes
2answers
26 views
Text spacing table cell
I have created a table in html for an email (FYI this is not for spam, it's to be used internally at the organization I work for). CSS is pretty much out of the question since we use Outlook and …
1
vote
6answers
82 views
How do you email source code without getting flagged as spam?
When replying to a post (for example on Craiglist) that asks for sample code, is there a way to be (reasonably) sure of delivery?
Here's the problem, stated as possible options and the negative …
2
votes
1answer
44 views
Django email digest
Is there an existing plug-in to produce daily or weekly digest emails in Django? (We want to combine many small notifications into one email, rather than bother people all the time.)
Django-mailer …
1
vote
2answers
60 views
How to send email via SSL and Indy in Delphi 7
I want to send email to Yahoo mail using Indy. But Yahoo uses 465 port with SSL connection. I don't know how to implement that in my program. I have read about TIdSSLIOHandlerSocketOpenSSL component …
1
vote
1answer
22 views
Choosing an email sending service
I'm going to send a lot of (legitimate, not spam) emails, and would like to use an external service provider for this purpose (help track bounce rate, "marked as spam" emails, etc...).
We really …
0
votes
3answers
30 views
smtp problem asp.net
I am trying to create a web application which upon entering your email address and message , sends an email with this information from the email address.
I used this:
try
{
…
1
vote
2answers
38 views
How to send an email from my application using email application?
Hi,
How to send an email from my application using email application?
I am having the one scenario like send email to particular mail id(info@jeltech.com). In my application while clicking the link …
1
vote
2answers
49 views
Sending Emails: Changing “From” Field Bad?
Hey All,
Just wondering if changing the "From" field when sending email (programatically) is considered a "bad" thing, and will mail servers more likely reject emails sent from my web/mail server …
0
votes
2answers
21 views
How to display name in the from address?
Hi,
I have a site in PHP.In this when I send the invitation to people it takes the from address as mysitename@servername.Instead of this I want o display the Mysitename
.How can I do.I have the code …
0
votes
1answer
19 views
Send Email Attachement using byte[] with Java-Mail
I have a byte array wich i wish to add as an attachement to an email i am sending.
Unfortunally i can't find how to attach it as a byte array, the solution i have uses disk files (which i dont want …
2
votes
4answers
140 views
Calculating difference between username and email in javascript
Hi, for security reasons i want the users on my website not to be able to register a username that resembles their email adress. Someone with email adress user@domain.com cant register as user or …
0
votes
2answers
32 views
Django Html email adds extra characters to the email body
I'm using Django to send an e-mail which has a text part, and an HTML part. Here's the code:
subject = request.session.get('email_subject', None)
from_email = …
