email

Determine Filesize of Email Attachment Before Downloading

I'm using Zend Mail library to access email and download email attachments. Is there a way to determine the attachment's filesize before downloading? ...

Email Headers: Anything to indicate file size?

I need to know the file size of email attachments before downloading them. Is there anything in email headers that can help me? ...

Is there a faster way to retrieve a message using zend framework libraries?

Hi guys I'm building a simple mail interface for my application but I've noticed that its really slow especially when the user has to list out a number of emails. I've traced the time taken for code to execute and found that just the $mail->getMessage function takes around 0.6 seconds to execute. My code is as below: $mail = new Zend_M...

How does Litmus track their email analytics?

So, 'Litmus', a web app for testing emails and webpages across browsers and email clients, has a proprietary method that they claim is able to track not just opens, clicks, browsers, etc (standard with an embedded image and pass-through link tracking.) What's unique is they claim that they are able to track what actions the end user too...

JavaScript/Jquery RegEx to validate an EMAIL Address isn't working correctly.

I'm using the following lines of JavaScript to validate an input as a valid email address: // Check for a valid email address var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/; var address = $('#formRegister-emailAddress').val(); if(reg.test(address) == false) { // Validation Failed alert('Please enter a va...

How to send e-mail to multiple recipients from database query (PHP)

I'm trying to send an e-mail to multiple e-mail address in my database. Here is my current code. It is only working when I specify a single e-mail address, however, I need to have them query my database and send the e-mail to each e-mail address. Where am I going wrong here? function sendmail($cat, $user) { require_once "Mail.php"; ...

Is there a way to convert incoming email to a HTTP POST request?

I'm looking for a simple service/software that will convert emails into HTTP POST requests so I don't have to code in separate code paths for email handling. Does such a thing exist? ...

best way to create reply to content in mail

Hi friends, I am doing mail like app. I want to do reply to message. I find MFMailComposeViewController is not suiting for own mail app. can anyone suggest a best way for doing this. because i have to html content in body of the mail. Regards, sathish ...

We are planning on building a desktop based e-mail client in C#. What are the challenges that we might face during this? (we are new to this platform)

hey there! we are planning to build a desktop based e-mail client using C#. As we are new to this platform and technology, can anyone enlighten us with the problems that we might face during this process? ...

getting updated receipent and email body information from MFMailComposeViewController class

Hi friends, Is it possible to get updated receipent and email body information from MFMailComposeViewController in iphone sdk manually. And manually sending that data in json web service to my own mail box. Regards, sathish ...

Why am I only able to download messages from my Gmail outbox via POP3?

I don't know how many developers are using the C#Mail library right now, but this is giving me a huge headache so I figured it couldn't hurt to ask. Maybe somebody else out there has run into a similar problem, with or without C#Mail. When I create a Pop3Client and connect to "pop.gmail.com" with my username and password (and Ssl = true...

How do you deal with the uncertainty of email?

I'm working on several processes which could potentially run into problems that must be solved by people. Currently it logs these errors and sends an email to relevant individuals. But email seems to be the weak link here. Problems I run into: email server is down, the email gets caught in a spam filter, email "never arrived." Do I n...

browsers mailto issue?

Hi all, i have an application that have to return emails to user his email client, but on some cases i have to pass around 1000 emails... I'm using mailto on href, something like this: mailto:[email protected][email protected],[email protected],anotherone@dfsf... Why am I returning to his email client instead using PHP mail() fu...

PHP mail() errors: Hide attempted email but still show error

I am working on a 'forgot password' form, currently I am working locally so the mail function will not work but the errors come up like this: Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in ... on line 508 Error Sending Em...

Trigger PHP Script on New Email (Google Apps / Gmail)

Is there any way to trigger a php script when a new email arrives on Google Apps (Gmail)? I've figured out a way to poll the inbox to look for new messages, but I'd ideally like a more event-based solution. Basically I need it to be run from a server somewhere which would parse new email messages and process itself according to the con...

Thunderbird - prefer text/plain attachment to text/html attachment?

Hi, Is there a way to have Thunderbird prefer the text/plain attachment to a text/html attachment when both are available in a message? Here's my problem... I want to view the output of my cron jobs as plain text. I have Thunderbird configured to use a monospace font for plain text emails. However, somebody (I suspect my Exchange serv...

ASP.NET MVC - How should sending email be handled?

In an ASP.NET MVC application, how should the sending of emails be handled? I've been thinking about this, and I really like the idea of handling it in an MVC-oriented way (it is an MVC application, after all.) What I mean is that the email that gets delivered to the user is really just a view that should have a model passed to it. This...

Mail.dll through proxy C#

Hello. I have the following task: I should read e-mails from gmail and the computer is connected to the internet through proxy. Normally I would use mail.dll http://www.lesnikowski.com/mail like this: using (Imap imap = new Imap()) { imap.ConnectSSL(_server); imap.Login(_user, _password); // Select the I...

Are there any web based IMAP clients out there

I would love to be able to stop using application based email clients and move completely to the web for my email. The problem is the webmail clients for my job suck compared to Gmail. Is there something out there that would act as an imap client for multiple accounts that are a little more intuitive than the standard webmail clients out...

Programatically Getting POP3 Message Unique Id and Message Size

I need to access a POP3 email account and obtain the the list of messages' unique id and its corresponding file size. I'm using CodeIgniter and have access to Zend libraries. Trying to do something similar to the LIST command. Ideas? ...