email

MailMessage Mask From Email address

I need to send a email from application with text in the from field. I have the from email address, but how do I mask the email address so the from message renders the text not the email address? ...

Email integration

I was wondering if someone could help me out. In some web application, the app will send out emails, say when a new message has been posted. Then instead of signing into the application to post a reply you can just simply reply to the email and it will automatically update the web app with your response. My question is, how is this do...

How to Host mail using java api ????

Hi, i want to host mail on my machine.So i can able to send and received mails through my machines. is there any api in java to do the same.. thanx ...

Intercept QMail SMTP emails

Hello Here is the situation, we have a linux web server that runs Plesk and I need a way to intercept emails sent to and from the server. Plesk uses qmail to send and receive emails. We have sorted the receiving emails problem by adding a mailgroup to each email address that includes an "archive@" address. Then we use a PHP script to r...

Asp Dundas.Mailer subject encoding problem

I'm using the Dundas.Mailer component to send e-mails. The user can send e-mails from within the application. I'm using codepage 1252 for western Europa, as users use french with a lot of accents and such. The body of the e-mail is just fine, but the subject does not get handled properly, and non standard ascii characters get messed up...

How do I send Asian charset plaintext emails in ASP.NET?

I have an ASP.NET application that needs to send emails in Korean. These emails are sent in plaintext. But when the emails are received, they look like this: ? First name? ??: ?????. ?? ???? ???? ?? ??? ??? ?? ???? ???? ????? ???? ????. ??????? ??? ????? ???? ??? ??1-888-123-4567 ? ??????? ?? [email protected] ?? ?????? ...

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): PROS One less field to fill out during registration (it would just be email address, password, and verify password). I'm a big fan of minim...

Limitations on the number of BCC recipients

I have an app which is programmatically generating and sending out emails. The recipients list can get upwards of 1000. I had been looping through and sending out individual emails, but that was taking too long at about .5 sec each. The approach I'm looking into now is to remove customization in the message body and send out a single ...

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 body and download an attachment if any. What is the best way to do this using C# (or Vb.net)? ...

Sending Rich Text Format email using Outlook 2003

I am trying to send a Rich Text Format email message using Outlook 2003. The following code results the RTF HTML source code to be dumped into the mail message body. What should I do in order to fix that, and make Outlook display the formatted data and not the source HTML ? import win32com.client RTFTEMPLATE = """<!DOCTYPE HTML PUBLIC...

Implementation: How to retrieve and send emails for different Gmail accounts?

Hello all, I need advice and how to got about setting up a simple service for my users. I would like to add a new feature where users can send and receive emails from their gmail account. I have seen this done several times and I know its possible. There use to be a project for "Libgmailer" at sourceforge but I think it was abandoned. ...

How can I make sure my iphone app is the one talking to my server?

Until iPhone 3.0 is available, I need to send an email with what my iPhone app has generated (an image) and to where the user has chosen. Two solutions, the skpsmtpmessage library, which is not all there and still buggy; or write my own server to forward the emails. The latter is no problem for me, but the question is how can I be sure ...

Passing stored procedure to sp_send_dbmail

I am using sp_send_dbmail in SQL Server 2008 to send out the results of a query. I moved the query into a proc and am trying to use the proc in the sp_send_dbmail prcedure like so: EXEC msdb.dbo.sp_send_dbmail @profile_name = 'myprofile', @from_address = '[email protected]', @reply_to = '[email protected]', @recipients ...

Web based email reply/quoting code available?

I'd like to write a sort of mini-CRM system that will require interacting with emails from customers (many different systems). I'd like for it to be able to reply to their emails, and place the original email in a nice quoted reply format like other email apps. This appears to be fairly easy when responding to an ASCII email, but how d...

Windows mail vs Outlook express

Hi, I have a program that uses MAPI to send the mail using outlook express client. when I tried with outlook express it works fine. But when I tried with Windows mail my program is not able to login. It gives the error as "logon return code: 3 Err Msg: MAPI login fail". So I think there must be additional security settings are implemen...

Why is the To property of .net's MailMessage class read-only?

I've got a MailAddressCollection that contains all the addresses I want to send an email to, but instead of being able to simply have: myMessage.To = myMailAddressCollection; I have to do: foreach (MailAddress address in myMailAddressCollection) { myMessage.To.Add(address); } Can anyone shed any light on why the class is ...

Why won't my SMTP Server send my ASP.NET mail?!

I have an ASP.NET program that sends a confirmation email with the following code: String msgTxt = "My Message"; try { MailMessage message = new MailMessage(); message.From = new MailAddress("[email protected]"); message.To.Add(new MailAddress(emailParam)); message.Bcc.Add(new MailAddress("NPClie...

Debugging Messaging Exception

We have a batch program that incorporates JavaMail 1.2 that sends emails. In our development environment, we haven't got the chance to encounter the above mentioned exception. But in the client's environment, they had experienced this a lot of times with the following error trace: javax.mail.MessagingException: 550 Requested action not ...

Simple PHP tool to display arbitrary emails

Does anyone know of an existing tool to render a HTML-display for emails? I have access to the mail-source as text and need some kind of function/class/miniframework/... to get an Outlook-like display as a HTML-page. I looked into Horde and roundcube and I would really like to avoid having to extract the functionality from those big pr...

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 Opt-Out Text Only (Or tasteful Remote Images) Not sent out more than once a week Clients have fine-grained control over what they receive ema...