email-integration

Reusing a MFMailComposeViewController

I have an app that is built on the TabBar-based app in which I need to have one tab that is basically an email composer. So I'm trying to use a MFMailComposeViewController as one of the tabs. This seems to work fine until I actually go to send an email with the controller. If I do this the MFMailComposeViewController's view disappears...

How to accurately parse smtp message status code (DSN)?

RFC1893 claims that status codes will come in the format below you can read more here. But our bounce management system is having a hard time parsing error status code from bounce messages. We are able to get the raw message, but depending on the email server the code will come in different places. Is there any rule on how to parse th...

Sending mail from java

What is the easiest way to send and receive mails in java. ...

Send emails to multiple users using PHP/Javascript

I was trying to find an easier way to send e-mails to all my clients using our database (MySQL). I wanted to see if there is a way that it can select all the e-mails of my clients and I can add message, Subject and send it to all of my clients from my website rather than copying each of the mail. Is there a way to integrate SMTP to do t...

Can i track an IMAP mail reply ?

Hi, I am working on an IMAP client using java mail. We currently have a requirement of creating a "group by conversation" feature where user can view mails as conversation (Refer to how gmail groups mails that are replied and forwarded) I am able to retrieve mails from the server, but in the mail parts i recieve, the replied mail is "fu...

How do I attach an inline image to the email being sent by ActionMailer?

How do I attach an inline image to the email being sent by ActionMailer? How do I test if image was really attached at a specific place in the Email? ...

How to manage answers directly on email notifications

Hi, I would like to know what's the best way to manage answers to email notifications. eg. The user receive an email notification, and instead of having to click on a link to go on the website and answer it he could directly reply to the email. ...

Auto generate email account during Drupal account registration?

I was wondering how to auto generate a user email accounts in Drupal? I do not have a host currently but am trying to get my head around how this would be done. ...

How do I initate an email on the iphone from a view?

I need to be able to give users the ability to call someone or email someone from a certain view in my navigation based app. I thought I would use an action sheet with the choices and depending on the button pressed allow one or the other to be initiated (I'm simplifying a lot but ...). I really have several questions. Assuming this ...

Info that should be in the bug tracking system, ends up lost in emails somewhere. What To Do?

I am a developer with a small company which is about to take on a large project. We currently use email for issue tracking, and I intend to set up a bug/issue tracking system (perhaps bug genie, mantis or trac - we want something web based, php, open source, mysql) We have source control (SVN) In the past I have found that the biggest p...

Where is the IMAP support in the .NET Framework?

One year ago Mitchel Sellers had a related question... I would like to access the Google IMAP for sending and receiving email messages within my custom application. The point is that i would not like to use any third party controls. Newer versions of the .Net Framework support IMAP? What options do i have? ...

Using VB.NET to log into Windows Live Mail?

I want to make a program that tells you if you can login to an email account or not by entering their username and password into Windows Live. It would connect to the Hotmail server and see if the user/pass combination is correct. If it can log in, it would display a label that the account is valid, if not it would say that the account...

is there any such thing as SMTP to FTP gateway?

PROBLEM: I need a way to automatically convert CSV e-mail attachments into HTML using python, perl, ruby, or something else. I routinely get these and it is too tedious to do these by hand. QUESTION: Is there a service or trick one can use to forward e-mail so that the attachments show up on a file-server, ready for scripting and conver...

Implementing RFC 2369's "List-Unsubscribe" in PHP website - should I send confirmation?

I'm trying to implement RFC 2369's "List-Unsubscribe" in a PHP website which sends out daily updates by email. I'm planning to use the HTTP option only since this can be implemented simply in PHP code. My question is this: Once the user is unsubscribed, is it ok to send out a confirmation email, like "unsubscribe successful"? Or will t...

How to send 1000+ emails per day using an ASP.NET Web site

We have a website that requires to send 1000+ emails a day to all the customers who opted for the alerts. In couple of months time we are expecting to raise our customer base to 5,000 and so we may need to send 5000+ mails every day. At the moment we are using GoDaddy email server(the email services associated with our domain) and it pe...

send mail in background in iPhone .

Hello, I want to send Email in the background of the application. I dont want to show the MailComposer Dialog box to add all the detail. So How Can I do so ? Thanks . ...

mail server log - is this possible?

Hello, We have a main email account where I work (info@) that at least 4 people receive. Occasionally, someone screws with the outlook settings and makes it start pulling the emails off the server instead of downloading a copy. However, this time, a few emails came through on a couple computers, but didn't come through on one. Then I ch...

How might twitpic handle photo sent over email. Postfix with a post-processing routine ?

Do you think perhaps twitpic uses a dynamic email addresses? I would like to build a different service but with the same concepts. User sends an email with their submitted photo and the image is added to the users account. I'm looking for a place to start. I was thinking that perhaps an email server would handle the image with a post p...

how to attach a file in vb.net email sending program?

I'm making a windows form. Here is my current code: I don't have any idea on how to link the open file dialog with the file that I am going to attach. Try With OpenFileDialog1 'OpenFileDialog1 .Filter = "Text files (*.txt)|*.txt|" & "All files|*.*" If .ShowDialog() = DialogResult.OK Then...

how to send an email with attachment in vb.net?

how to do that?here is my current code, this is a windows form: mail.From = New MailAddress(TextBox2.Text) mail.To.Add(New MailAddress(TextBox1.Text)) mail.Subject = TextBox3.Text mail.Body = TextBox4.Text mail.IsBodyHtml = True Dim client As SmtpClient = New SmtpClient("smtp.gmail.com") client.EnableSsl...