email

Customizable open source e-mail newsletters server for Linux, perferably Python or PHP-based.

I'm looking for a customizable open source based e-mail newsletters server for Linux, preferably written in Python, Coldfusion or PHP. We want to be able to customize it to integrate with our existing SMS-platform so good modular support would be nice. ...

Java + MS Exchange: how to retrieve .msg files

Dear people, I've created a Java program with which I can retrieve mail from an Exchange mailserver. Problem is: the mail is in EML format and I need the MSG format! Right now I'm retrieving mail through the web access part of Exchange, using the Apache Slide project... is it possible at all to use java to retrieve msg files from an Ex...

Should I look for e-mail header fields names in case-sensitive or case-insensitive manner?

Section 2.2 of RFC 2822 defined e-mail message header fields. However it doesn't say explicitly if the header name should be interpreted in case-sensitive or case-insensitive manner. For example, if I want to find the "Carbon Copy" section should I look for "Cc:" in case sensitive manner? Or if a message already has "Cc:" field can it a...

Sending the same System.Net.MaiL.MailMessage to multiple recipients

I've got a method that basically has a "SendEmail" method (it will later be used by WCF service) It has params like, Subject, Body, etc... and a string[] of Recipients. What I do, is create a MailMessage based on the parameters, then send it using smtp - I know the MailMessage has a To MailAddressCollection, but if I add each address t...

PHP: mail() vs SendMail

a simple question: which one has good performance for sending mails in bulk? mail() function or sendmail which one is used by popular PHP list manager packages? ...

Converting HTML to plain text in PHP for e-mail

I use TinyMCE to allow minimal formatting of text within my site. From the HTML that's produced, I'd like to convert it to plain text for e-mail. I've been using a class called html2text, but it's really lacking in UTF-8 support, among other things. I do, however, like that it maps certain HTML tags to plain text formatting — like puttin...

Restricting Email to not sent in Junk Folder and can it possible from Email hide to recipient?

I am sending email throught SMTP Client using below code. MailMessage objMail = new MailMessage("FromEmail", "ToEmail", "Subject", "Email Body"); SmtpClient SmtpClnt = new SmtpClient(); SmtpClnt.Send(objMail); I have two question here How can I ensure that email is not sent junk email folder? Can I hide from email to recipient and j...

How would I implement an upload by email service for my photo sharing website?

I have a photo sharing website in development and want to be able to allow users to add photos and video by email attachment. I have email addresses for the site (hosted with goDaddy). I also have a LAMP CentOS application server running on Amazon Web Services EC2 that processes files uploaded via my web-based uploads page, so would like...

Automatic emails from wordpress

Is there any way to configurate my wordpress blog to send an email, to a group in Exchange, whenever there is a new post? I would like my IT department to receive the new post, or a notification of it, whenever someone writes one. ...

Launch Sharepoint workfloweach time a change is made, even if there is a pause

I have a workflow on a Sharepoint list which sends an email alert based on a date field in the list item - this requires using the "pause until" option. This seems to lock the "on change" workflow from being fired again if another change is made during the period of the pause. Is there some way around this? Some details, since maybe I...

Email Hashes on Facebook

I have a question about email hash on facebook if the email address has been changed by the facebook user. My site stored the email hash to match with the facebook email hash to identify the user on our website is the same user on our facebook application. If a facebook user has two facebook account with different email address, and o...

Is there a third-party service for receiving email and accessing via an API?

I'd like to build a feature into our web app that involves receiving and processing the contents of an email. But instead of going through the hassle of getting email setup on our server, it'd be really nice if there were a third-party service where I could forward emails and they could then process them and make the contents of the ema...

PHP mail problem

Some days ago when using mail() I had it working. But now I doesn't work. And I don't know what the problem is. $to = '[email protected]'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: [email protected]' . "\r\n" . 'Reply-To: [email protected]' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subjec...

C# Sending GridViews/DataTables via Email

I'm trying the find the best way to send a GridView or DataTable in an email. Page Behind Code: protected void Page_Load(object sender, EventArgs e) { DataTable s1 = Sql.specificReportData(Convert.ToInt32(Session["userID"])); this.gv.DataSource = s1.DefaultView; this.gv.DataBind(); } This generates and binds the data successfully, bu...

How to Check if a mail was received with php

Hi, i'm new in php. I want to send an email to someone and afterwards i need to check if this mail could be received. How do i do that? Hope you guys understand my problem ;). Thanks in advance. Marc ...

How can I generate an email with a subject line with international characters in it?

The content encoding headers define how the body of the message is to be interpreted, but the subject is a header, and isn't subject (ha ha) to the declaration of the content type/encoding headers. Is there a way to make international character set subject lines? ...

outlook plugin to catch compose mail events

I got an adjoining formregion in the compose mail form and i dont find the way to intercepts the form events like the drag and dropping of a file inside the message or the insertion of a text. NB: Ms has forbidden the complete replacement of the compose mail form so i cannot re-write the form has i want ...

How to use rails plugin - fetcher

Hi, I'm making a rails app which should receive e-mails. So I made a little research and figured out that I should use Fetcher plugin. But the problem is that I don't know how to use it! Please help... ...

Is it possible to save received emails as msg format instead of eml in SharePoint

I have a document library that is enabled to receive emails. However, the email is saved as .eml format, which cannot be opened by Outlook 2003/2007 by default. Is it possible to save the incoming emails as .msg instead? ...

python libraries for programatic email access: mime, smpt, pop3

does python have built in libraries for accessing email? smtp, pop3, mime parsers etc? (coming from .net where these libraries are usually from 3rd party commercial companies) ...