email

What do I need to set up my web app to accept input via email and sms?

I'm trying to enable some basic commands via email. Currently I have shared hosting accounts with shell access at dreamhost and site5. I usually use php/drupal, but am open to other options. I found this question, but I'm looking for something more basic: what do I need to configure where to create a hello world app that responds to emai...

What possible errors could I expect to recieve in System.Net.Mail.SendCompletedEventHandler?

I am using the SendAsync method to send some emails out. What different errors could possibly be returned in the AsyncCompletedEventArgs in the SendCompletedEventHandler? Is there recommended practices for handling these? ...

ASP.NET: How to download email attachments with POP3?

Hi, I am building an email receiving website. I can read the email with the help of code used in Code Project, but I can't download email attachments. Can anyone tell me how to download email attachments using POP3? Thank you! ...

How to set the bounce address using System.Net.Mail?

I'm trying to implement the Variable envelope return path (VERP) method to manage email addresses (ie when an email I send bounces back I want it to be sent to a specific email address so that I can update my database to avoid sending emails to that email address in the future). According to this article it is possible to specify the em...

How can I get the unread/new messages from Gmail using POP3?

Using the OpenPOP .net client for getting messages from Gmail. I'm wondering how I can get only the new messages? Currently, I get the atom feed and then get as many emails as the feed has with the OpenPOP client (starting from the first). GmailAtomFeed feed = new GmailAtomFeed("user", "pass"); feed.GetFeed(); int unread ...

Looking for a good technique for storing email templates

Hello, I am building a site in which we are making moderate use of email templates. As in, HTML templates which we pass tokens into like {UserName}, {Email}, {NameFirst}, etc. I am struggling with where to store these, as far as best practice goes. I'll first show the approach I took, and I'd be really excited to hear some expert persp...

How to send email from iPhone app without user interface

I want my app to be able to send an email with attachment to a hard-coded recipient with no user input required, unlike the MessageUI framework. Is there any way to do this? Any example code would be appreciated. Thanks in advance. ...

problems with sending non-english text over mail

I am trying to send non-english text over mail. The non-english text is on the "from" field of the mail (the text that appears beside the email address). In the recipient's mailbox, the non-english text is seen as a series of question marks. What could be wrong? Previously, I was having problems with printing non-english text from a sim...

cakephp Activation Email Sending slow

Hi all, I have a simple email sender for user account activation. Depending on which email address I use, I get significantly different response times: University email - 1 minute, Gmail - 3-4 hours, Yahoo - 1 or 2 days -- which seems bizarre. Has anyone else seen this phenomenon? EDIT: There weren't many responses (even for a bo...

what is the difference between the php imap extenstion and one of the mail classes?

I need my application to send and receive emails on certain events. I think I would like to use a mail server also to implement an in-application mailing ability, like the ability to send/receive/delete messages in applications like linkedin. What would be a good tool, a PHP mailing class, the imap extension, or are they not covering the...

c# SMTP email not delivered if attachments exist

I am creating and sending emails using the System.Net.Mail namespace. The smtp.Send(mailMessage) call is being made within a using System.Transactions.TransactionScope block. If I do not create any email attachments then everything works fine. If I add any attachments (using mailMessage.Attachments.Add(attachment)) then no errors are ...

Unable to parse Java MIME mail message

I'm creating java MIMEMessage object from input stream. It is getting constructed properly without any problem. I'm also able to fetch body and attachments. But the problem is, when I receive some emails with some different formating, like from iPhone or from Blackberry, my parsing fails. I'm parsing Java MIMEMessage by myself. Here I...

mail sent from google-app-engine app not appearing on my "sent items" on gmail account

I have an application hosted on google app engine that sends mail to people under certain conditions. The mail is sent on my behalf. Earlier, each time a mail was sent, I would find the sent mail on my "Sent Items" folder in gmail. However, this does not appear to be happening consistently. I found that, a mail was sent yesterday and was...

best practice to implement in-application mailing/inbox system

I need to implement an in-application message-box system (like any forum/social network has). Number of users is in the tens of thousands and up. I am thinking to do it using an actual email server and write a client for it inside the application (or just pick an open source client and adjust it to appear like a private messages system)....

Managing critical errors: logging & email

What's the best way to send quick one-liner e-mails to an administrative address in Rails? I am using the Rails Logger to keep track of nasty problems in my application. One of my controllers is doing mission-critical work and I need to know of any errors ASAP. When there is an error, I would like my app to send an email to myself, ca...

How to Send Mail from JavaMail via Localhost

Hi, I am creating a form, which will send out the details via email upon user completes his details and click submit. Mail Submission with JavaMail: protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { PrintWriter out = response.getWriter(); try { ...

Mail.app like NSTokenField for names and emails

Hey guys! I want to build a NSTokenField that works just like the recipient field in Mail.app. I know how to search the address book for names and emails. These are probably really bad noob questions, sorry for that. How can I reformat my search results array to get items in the format "Name <email>" (like the auto completion results i...

Ubuntu exim4 - Config setup and spam filters

I've recently setup my Ubuntu web server with exim4 so my PHP website applications can send email such as "thank you" and "confirmation" notices. I've got it setup and working such that I can send email to gmail, Yahoo! and my work address. However, my work email gets caught up in our spam filter. I'm new to setting up mail servers so...

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, and takes hours to complete the whole batch. Now I've looked at mass mailing services like MailChimp (which would replace our current system...

CakePHP: email validate action doesn't work when clicking on the email link

Hi, We've created the email validation part of our site. We built the site using CakePHP BTW. The problem is that it doesn't work when we click on the link in the email. The email is sent as plain text. A weird thing is that when we paste the link on the address bar, it works. Also when clicking on the link using Gmail and desktop em...