email

Getting attachments from a mail account with .NET

I'd like a free library for .NET to get attachments from an account (such as gMail, or others) via imap4 (not necessarely), and save them in a folder. Ideally it would allow me to get a list of them, and download only some given ones (filtering by extension, name, and/or size) and be free. I've already done this with a trial version of...

what in/out bound mail system to use ? hosted or not ?

hi all I have a ruby / rails application that integrates in and outgoing email directly into the app. The app is going to be running on multiple domains each with posible many users sending and recieving email. I have looked into sendgrid, mailchimp and mad mimi as hosted services and also looked to create my own email server. There ...

Automated fake mailbox

Hello, i'm about to start the development of a new automated-email application. The idea is that customers (or other external users) send emails to a mailbox and then an automated process will read them, extract their information and insert it into some database. It's a requirement that the emails have an standard format in order to be p...

how to send email from php application to a local email

I have a local network in the company with a mail server, how can i make php application built locally on the server to send and email to a local email address? thanks in advance ...

Mail in the cloud? (web service for email)

I have multiple websites that need to send mail (after successful signup, etc.); I maintain a Postfix instance just for this (it never receives any incoming mail). This Postfix instance is a pain: it is sometimes broken, is regularly attacked, produces enormous amounts of logs, etc. These problems could certainly be dealt with by an exp...

Can I safely interpret ISO-8859-1 strings as Win1252 when parsing e-mail?

I need to support decoding ISO-8859-1 in my e-mail client. Specifically sometimes messages contain attaches that have filenames starting with "?iso-8859-1?". Wikipedia says ISO-8859-1 is pretty much the same as Windows 1252. I already have good tested code for decoding Win1252. Can I just use it directly and expect no problems? ...

How to only send a mail to someone?

Hi All, I am working in an web app, where i have to send an email to my users after some event happens. I wont receive any mails from them. How to proceed with this. ...

Verifying an email address exist in C#

Regarding this post about email verification, using C#, how would you issue a VRFY command issue a RCPT command ...

iPhone SDK Add Image to the Body of an Email?

Hi, I was wondering if anyone knew how to use an image in the body of an email when the mail app is opened. Can anyone help? Thanks in advance Kieran. ...

OpenID on Google not returning anything

Hi there, For some reason, the following code does not return anything: string alias = response.FriendlyIdentifierForDisplay; var sreg = response.GetExtension<ClaimsResponse>(); if (sreg != null && sreg.MailAddress != null) { alias = sreg.MailAddres...

import hotmail contacts using asp.net

i need to import live/hotmail contacts using asp.net. I have done gmail and yahoo. i looked at opencontactsnet.dll and it doesnt work for live. none of the contacts are retrieved from that dll. does anyone know anything specifically for hotmail contacts? ...

gmail drawing send

is there some online web app which would let me make a vector drawing, and give me the choice to write some text and send it through gmail ? for the magic to be complete, the web app would save my drawing as png (or whatever) and attach it to the sent email... i guess i would have to give the webapp my gmail account info so it can sen...

Parsing email with Python

I'm writing a Python script to process emails returned from Procmail. As suggested in this question, I'm using the following Procmail config: :0: |$HOME/process_mail.py My process_mail.py script is receiving an email via stdin like this: From hostname Tue Jun 15 21:43:30 2010 Received: (qmail 8580 invoked from network); 15 Jun 2010 2...

Java:Apache commons mail goes immediately to hotmail junk folder

Hello all Is there a way to make my email pass through these hotmail filters? In gmail the mails arrive in the inbox folder ...

Get reply mail to my server for a mail sent through php mail function

Hi, I am developing a system to send mail to all of our clients. If they reply to that mail, I want to retrieve the reply mails to my server. There is a way to connect through the IMAP/POP3 server, But it is taking a long time to load the mails. Is there any way to get the reply mails directly to my server. or ay other alternate way to g...

best way to receive email for multiple domains with multiple user accouts into rails app

hi all I have a cms that runs on multiple domains and therefore needs to pull emails into the app for multiple email addresses. I have setup rackspace email for a hosted email solution and am trying to find the best way to pull the emails into my app from all the mailboxes. Should i be using pop3 or imap ? should i be pulling into a ...

Ping script with email in vbs

Hello, i know i asked already the question about the ping script but now i have a new question about it :-) I hope someone can help me again. strText = "here comes the mail message" strFile = "test.log" PingForever strHost, strFile Sub PingForever(strHost, outputfile) Dim Output, Shell, strCommand, ReturnCode Set Output = C...

What to use as "spam-filter" when sending emails with PHP mail() ?

I have a classifieds website, and on each classifieds page, there is a form for tipping a friend where you just enter the persons email-adress and the tip will then be sent. The form is submitted to tip.php where all "magic" happens with checking and sanitizing etc etc... Lastly I use php:s mail() function to send the email from tip.php...

Is JavaScript supported in an email message?

Is JavaScript supported in an email message? ...

Rails: Custom template for email "deliver_" method?

I'm building an email system that stores my different emails in the database and calls the appropriate "deliver_" method via method_missing (since I can't explicitly declare methods since they're user-generated). My problem is that my rails app still tries to render the template for whatever the generated email is, though those template...