email-integration

custom email header

hi i want to add a enquiry id number to my emails so that when a user replies i i can automatically attach the email to an enquiry. I am going to put a message with please do not remove this enquiry number when replying but it would be good if i can put a custom header with the enquiry number so the user doesnt see it. Is this possibl...

Setting up a mailing list repository in Sharepoint

I'm trying to set up (in Sharepoint), a mailing list archive. What I'd like it to do is listen for mails to the mailing list and archive them as searchable documents within the sharepoint site. More or less, the Microsoft equivalent of this: http://www.biglist.com/lists/stella/archives/ Are there any good ways to do this? We're running...

how to send email to facebook proxied email

when facebook app users provide proxied emails like apps+XXXXX.YYYYYY.ZZZZZproxymail.facebook.com , how do i send emails to them? email sent to this email is not delivered. ...

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? ...

Is an e-mail queue necessary in an e-mail-heavy web app?

In a couple of recent projects, I've written an e-mail queue as a database table that is checked every minute by a cronjob. The cron script waits a few seconds in between sends. The reason I did this was because I read somewhere that it helps your e-mail not end up in the spam folder if it's not blasted out from the same server all at ...

Sign Emails with Private Key for DKIM with ASP.NET

Jeff Atwood has a good post on ways to pass email spam filters in his post at: http://www.codinghorror.com/blog/2010/04/so-youd-like-to-send-some-email-through-code.html The only issue I have is figuring out a way to sign the email with a private key for DKIM. We use the MailMessage and SmtpClient objects that come with ASP.NET 3.5. How...

Migrating from postfix to Zimbra, one hurdle left - Need to rewrite 'To:' before local delivery

If there is another way to go about this, I would be glad to hear it. I have been googling this one piece of the puzzle for most of the day. I have outsourced spam filtering for a handful of accounts in the domain (I'll use example.com). Anything coming in for [email protected] gets rewritten to [email protected] in the aliases file....

Emailing an attachment in C# Windows application

We are developing a .Net Windows application in C# for commercial distribution. Objective I want to add a function to allow the user to email a file to any email recipient from within the application without needing an email client on their PC, just an internet connection. The email they send needs to appear that it has come from them ...

display email inbox?

Hi, is there an option that I could retrieve from my app the latest 10 email subjects from my ipad email inbox. I would like to display the user his last 10 subjects in my new app. Any Ideas if this is possible and how? best chris ...

Windows Server/.NET-based email dropbox implementation

We're developing a SaaS application, which, among other things, has to have email integration: whenever a user sends an email to a unique email address (such as [email protected]), our .NET service has to handle this message - pretty common nowadays, I guess. Before starting to design anything, I'd like to know what is the ap...

Multiple Attachment problems in PL/SQL using utl_smtp package

I'm using the code from this link to send attachments in the email notifications of our system; http://www.builderau.com.au/program/oracle/soa/Sending-blob-attachments-in-e-mail-with-utl-smtp/0,339028441,339284536,00.htm The problem is that the second attachment has encoding issue. So if i send in a text file, the text in the txt file ...

Best way to obfuscate an email address

I'm creating an application that requires passing email addresses around in querystrings and linking to these pages in public documents. I'd like to prevent my site from becoming spambot heaven, so I'm looking for a simple algorithm (preferably in JavaScript) to encrypt/obfuscate the address so it can be used publicly ina URL without m...

Any third party tools for messaging architecture/infrastructure which can be used for existing applications?

Hi, We are looking to add messaging infrastructure support to our existing applications. Something like emailing through existing mail clients like exchange,outlook,lotus notes,SMTP etc. , manage address books with integration with LDAP, send mobile texts (SMS) (maybe via email to sms gateways), send secured emails to users. Any one kno...

postfix configuration to receive emails

Hi guys, I have a requirement to accept all incoming emails into our server and process them through a script. I will need some pointers as to what should be the required configuration. This is the current main.cf :- myorigin = /etc/mailname smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu) biff = no # appending ...

How to send e-mail from Silverlight without ASP.NET server?

My task is simple, send an e-mail from a Silverlight app, but it has to work in most webservers so, Linux, Apache. Cannot use Windows Servers. Is my best bet to create a simple PHP script to do the heavy lifting and make request to that using SL? ...

Can't send mail with SmtpClient

Can't send mail. Here is my C# source: var to = "[email protected]"; var subject = "test"; var body = "test mail"; var message = new MailMessage(from, to, subject, body); var client = new SmtpClient { Credentials = new NetworkCredential("[email protected]", "mypassword") }; client.Send(message); here is the App.config: <s...

Database Modeling an Email List and Report Types

I'm having a huge problem in modeling this problem. I'm writing a exam taking application (in MS-Access, but this isn't really relevant) and there are a few reports that need to be sent out. The first report is sent out automatically after a person completes an exam. The second report is sent out every 2 weeks (or whatever they want to ...

Sending out emails using a user editable template with multiple users.

I have a rails app that needs to send out thank you emails to customers. I also need to have it so that there is a generic template that the user can edit before sending it off. I know I can do something like this with ActionMailer, but what I need to do is have it so that each user of the app can have a different email to send out of. ...

RoR UI for Readonly Emails

Hello, I am build a application to pull incoming emails from a mailbox and display them in read_only mode to users. Users should NOT compose any emails but just readonly access to email list and email content. It should support both text and rich text html emails as well as attachments. Can you please advise me how to go about this? T...

iPhone Audio Record with Export/Email

I have searched all over Apples website and the internet as well as Stackoverflow. Does anyone have any sample code or a tutorial of how I can record audio from the built in mic, and then export that audio via email? Please, I really need it for my app. Thanks. ...