attachments

Round trip editing of binary documents stored on a server

Hi all, I'm looking to build some functionality for a content management system for the editing of files stored on the server. I'd like to provide users the ability to easily download files locally to their computer, open the file for editing, and save it back to the server. The process should be as seamless as possible. Here's the s...

Fetching attachments from gmail via either python or php.

I have been trying to find information on how to retrieve attachments from a gmail account in either python or PHP, I'm hoping that someone here can be of some help, thanks. Related: How can I download all emails with attachments from Gmail? ...

ISO encoded attachment names and python

First of all i don't have the code example on this computer, but i have an example that is quite similar. (http://docs.python.org/library/email-examples.html) The 4th one. My issue lies within this bit of code counter = 1 for part in msg.walk(): # multipart/* are just containers if part.get_content_maintype() == 'multipart': ...

Outlook HTML Mail - changing linked items to embedded

I'm attempting to send HTML formatted emails using C# 3 via Outlook.MailItem Outlook.MailItem objMail = (Outlook.MailItem)olkApp.CreateItem(Outlook.OlItemType.olMailItem); objMail.To = to; objMail.Subject = subject; objMail.HTMLBody = htmlBody; The email is generated externally by saving from an RTF control (TX Text Control), which yi...

PHP Attaching an image to an email

Is there a way to attach an image to an html formatted email message created in PHP? We need to ensure that a corporate logo is on emails sent to clients who may not have access to the internet whilst reading their email (They will obviously have it to download the files). ...

How should I go about getting and processing an (Exchange) email attachment?

I need to get a zip file from an email attachment, unzip it and copy it somewhere. What would be the way I should go about it? I'm currently googling around things like 'Exchange API' and 'processing email attachments' and kind of hoping this kind of thing has been done before. The environment will be Windows and Exchange 2003, and an...

Compiling email with multiple attachments in PHP

I need to send out an email with multiple image attachments from PHP. I currently have a test set up that uses two hard coded images. I compile the email with al the necessary headers and send it out. However, when I receive it, it only shows the first image as an attachment. The second image seems to be ignored (tested with both Groupwi...

Zend Framework: Some email users get errors when trying to open PDF attachments?

I'm having a strange problem and not sure how to troubleshoot it. I have created a script in one of my Zend Framework controllers that allows an administrator to log in, upload a PDF, and send as an attachment to everyone subscribed to the mailing list. The problem is that some users report that they are unable to open the PDF attachment...

Zend Framework: Fatal error when trying to use Zend Mail Transport to send multiple emails with attachments

I don't totally understand how all this works, but I'm getting this error: Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 261858 bytes) in /Users/andrew/Sites/myApp/library/Zend/Mail/Transport/Smtp.php on line 213 I'm running this code locally on my Mac running MAMP. Not sure if that has anything to do w...

Changing filename of attachment in CFMail

Hi there, I'm trying to use coldfusion to send out emails containing attachements stored on our server. To manage these attachments we call them 1.jpg, 2.doc, ... n.ext ... where n is a key in a database where we hold other information about the file such as it's original filename. I can use the code <cfmailparam file="c:\path\1.doc"...

Alternatives to sending an image in base64 via document literal SOAP

I'm currently modifying a document literal SOAP service for a business app which transfers data about customers backwards and forwards. A new requirement to transfer scanned document images has just been identified. The problem I have is that the proprietary language I use does not support SOAP attachments. The images being transferred...

SOAP with Attachment (SwA) in C#

Hi all, I need to use .NET in order to consume a JAVA written SOAP service which expects simple MIME attachments on some of its method. Does anybody know how to accomplish it? I could not find any information about using WCF or even WSE clients with such attachments. Thanks! ...

How do I add attachments to MOSS list from WSS doc library?

Following a recent merge of companies, we are in the process of migrating documents from WSS off one server to MOSS on another, along with reviewing our filing structure. I've created a list which needs attachments adding to the new items when created, however these are presently stored on WSS as pdfs in a document lirary. If I browse ...

How do I use a link instead of the browse button to attach a file?

I have a form like the following: <form id="submit_idea" name="submit_idea" method="post" action=""> <a class="attach" title="Attach a file" onclick="clickAttachment()" href="javascript:void(0)">Attach File</a> <span id="id_filename"/> <input id="id_attachment" type="file" name="attachment"/> <input class="submit_btn" type=...

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

Problem in sending excel file as attachment using mail function in php?

Hi, I have used this code from link below to send excel file as attachment. http://www.hotscripts.com/forums/php/22626-php-form-excel-then-send-email-attachment.html Here is the code I have used: <?php ob_start(); ?> <html> <head><title></title> </head> <body> <body> <center> <table> <tr> <td>Name:</td><td>My Name<...

any open source libraries to extract photo/video attachments from email and/or MMS which take care of "hundreds" of test cases

I want to allow users to upload photos and videos with their mobile phone by sending the photo/video to an email address. Cal Henderson in "Building Scalable Web Sites" mentions that Flickr has "hundreds" of test cases to deal with the fact that "Wireless Carriers Hate You". Are there any open source projects/libraries that try to addr...

Creating a couchdb standalone attachment using cURL.

I am currently playing with couchdb and testing out the 'standalone attachments' feature, which is described near the bottom of this page. I am trying to use curl's --data-urlencode feature to send the creation request, which only half works. I can create the attachment and retrieve it, but the Content-Type field is wrong, so the im...

Can't filter filenames in Talend Open Studio using regular expressions

Hi to all! This question is about Talend Open Studio code. I use tSendmail component as a child job, that needs to be run when parent job fails (tFtpPut). However, in tFtpPut, file names are filtered by filename masks (for example, it will upload file named Eedoh, if I put Ee* as a mask), but in tSendMail that's not the case. I unders...

sharepoint - Add an Attachment to a ListInstance Data Node?

Is it possible to add an attachment within the ListInstance when specifying Default records for a list when creating it with a Feature in MOSS? ...