email

Sending Email Broadcasts

I'm working on an application that will allow management to send registered users (opt-in) broadcast emails at regular intervals, or based on various other criteria. In any case, I'm curious as to whether I should send a separate email to each recipient or bcc all of them on a single message. Currently the email list would be about 150...

Mime Headers and IIS 6 SMTP logging

Hi, Are there any Mime headers which will show up in the IIS 6 smtp logs? ...

How can a read receipt be suppressed?

I am programmatically "reading" e-mails using WebDav. I am also deleting these e-mails when I've finished having my way with them, however, this is causing an interesting problem. Each time I delete an e-mail the original sender is getting a not read response. I have logged into OWA and checked the option Do not automatically send a r...

Best way to send 10,000+ emails with PEAR/Mail_Queue

I have a cron which generates the whole mail info and puts in a database table using $mail_queue->put(.....) with an option to delete emails after they're sent. Here's where I need a little help: What is the best way to send the emails after I have the above info? Running the $mail_queue->sendMailsInQueue() right away, using other cron ...

Books for Email Marketing software development

Hey guys, I've searched and searched and can't find anything on books for developing email marketing software. There are a bunch on CMS development amongst other things, but all I get are ads for email marketing software, not books on how to do it. I'm looking for one on an advanced level preferably with PHP, MySQL (or PGSQL) in a Lin...

When should I start to use a third party batch email system

Inspired by this question regarding email broadcasts I was wondering at what point I should begin to use a third party to handle batch emails (opt-in). I'm currently expecting several emails a week ranging between 10-500 email addresses. Is it worth-while to use a third party for this scale? I don't expect these emails to contain any...

How do I add images in the composer sheet of an iPhone application.

Hello all, I am using inbuilt composer of iPhone to send an email in my application. I want to add images to body of my email. Please remember I want to place images in the body and not want to attach the images to the email. I know how to attach them. Its like I want to place multiple images in the body with some details for them in fr...

Getting Error While sending an image From an iPhone emil using MailComposer

Hello all, I am using MailComposer available in iPhone sdk3.0. I am using the following code to add image using html to my email body. It displays the image properly in mail body. But when I try to send it. It breaks leaving message in the log , No image found. Can anyone help me regarding this where am going wrong. Like I also tried a...

Best Practices for receiving email in rails

Hey Everyone, I've been trying to figure out the best way to handle incoming email in a rails applications. I realize "best practices" is quite subjective, so I'll start by stating that my primary concerns are scalability and efficiency. This is an issue primarily because my use will involve handling potentially large attachments. Se...

HTML EMail Template

Anybody knows where I can find nice HTML Templates to send email reports? Edit : Moved here http://doctype.com/html-email-template ...

how to send SMS/Email from an application

Hi all, first of all thanks a lot to all of you for past valuable suggestions,we are creating an application where on certain events wants to send email/sms to specified phone number we already tried with the openURL call but it opens the existing inbuilt email/sms application of the iphone.Our requirement is to send sms/email without o...

Android Send Intent attaching photo from sdcard as 0 length file

Hi All, I know a variant of this question was asked before trying-to-attach-a-file-from-sd-card-to-email But the solution offered, i.e. a reboot doesn't seem to do it for me. I have seen a good number of group postings which support this being a problem. I can only assume the OP for the linked to question made some other changes, pos...

Opening email files that have attachments in c#.net

Right now when we open up a email file that has been saved, and it has an attachment the attachment is read-only. We need the attachment to be able to be clicked and opened just like it is when you open the saved email from its location. Currently we have this: foreach (OutlookStorage.Attachment attach in outlookMsg.Attachments) ...

creating folders in IMAP does not work

Hi, I am trying hard to create a folder in IMAP (I am using gmail) Here is what i have attempted so far: public boolean createFolder(String folderName) throws MessagingException { store = session.getStore("imap"); System.out.println("connecting store.."); store.connect("imap.gmail.com", 993, "[email protected]", "pass...

accented words in email subject break spacing - how do I stop this?

We have a custom php email marketing app, and an interesting problem: If the subject line of the message contains a word with accents, it 'swallows' the spaces between it and the following word. An example: the phrase Ángel Ríos escucha y sorprende is shown (by at least gmail and lotus notes) as ÁngelRíos escucha y sorprende The p...

php mail headers for outlook - the email arrives empty to outlook, and great to gmail to yahoo

mail($to, $subject, $message, $headers); the $header is: From: [email protected] Reply-To: [email protected] Content-Type: text/html; charset=iso-8859-1 X-Mailer: PHP/5.2.5 MIME-Version: 1.0 I built $header with those line and I changed the order in every way, putting the Mime in the beginning, at the end, moving the from ...

Parse Gmail with Python and mark all older than date as "read"

Long story short, I created a new gmail account, and linked several other accounts to it (each with 1000s of messages), which I am importing. All imported messages arrive as unread, but I need them to appear as read. I have a little experience with python, but I've only used mail and imaplib modules for sending mail, not processing acco...

PHP Mass Mailing (25K-100K) lists

Hi, I have a PHP app I have written for clients to create HTML newsletters and send them out to emails in a database. Mailing is done via the mail() command (I know, crappy), from a CRON job with proper pauses, etc. Up to now, all clients have had limited lists (the maximum was 8000 mails, sent in two hours). The server is my own - no re...

How set the From email address for mailx command?

I'm working on a korn shell script running on a Solaris server that will send out an email when and error condition is met. I'm sending the email via mailx. Question: How to I set the "From" email address on the mailx command? Current Code: echo ${msg_txt} | mailx -s "Script Failure" ${to_email} Note: The command works fine, ho...

phpmailer error "Could not instantiate mail function"

I'm using the mail() basic example modified slightly for my user id and I'm getting the error "Mailer Error: Could not instantiate mail function" if I use the mail function - mail($to, $subject, $message, $headers); it works fine, though I'm having trouble sending html, which is why I'm trying PHPMailer. this is the code: $mail ...