Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
441 views

How do I attach a prawnto-rendered .pdf to an email in Rails 2.3.5?

My application creates a .pdf file when it is rendered by passing it to the URL (for example, domain.com/letter/2.pdf) It doesn't get saved anywhere. How can I make that actual pdf an attachment in ...
7
votes
5answers
661 views

Images in email: link or embed?

I noticed that almost all email messages I get do not embed images, but link them from the http instead (and they get blocked by default of course). I'm sending HTML email for my service and can ...
6
votes
3answers
224 views

How to open attachment list of media?

In Android messaging, when click on attach it open the list of content provider like Camera, Gallery, Audio, Video etc. How to open the same list on button click? Like this :
6
votes
3answers
364 views

C# Get filename from mail attachements

I have a simple C# app that send SMTP emails (using System.Net.Mail classes). After sending (emailing) a MailMessage object I want to iterate through the list of the attachments and delete the ...
6
votes
1answer
431 views

How can I attach multiple files to an ActionMailer mail object? (Without it attaching several unwanted text files as well.)

I am successfully generating and sending an email with the following code. class UserMailer < ActionMailer::Base default :from => 'user@user.com', :date => Time.now def ...
6
votes
3answers
4k views

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 ...
5
votes
4answers
105 views

Wordpress : excluding images 'inserted into post' from get_children

I have a page which has a slideshow at the top, and images inserted inline into the content area. I need to exclude the images that have been inserted into the post from the slideshow. Currently I ...
5
votes
1answer
636 views

Get attachments from a JAX-WS WebService with a JAX-RPC Client

As we migrate from JAX-RPC to JAX-WS I'm trying to Call a WebService, which uses JAX-W/JAXB. The client itself is still using JAX-RPC. The WSDL File is kept the same. This works fine, as long, as ...
4
votes
2answers
382 views

Not losing paperclip attachment when model cannot be saved due to validation error

The scenario is a normal model that contains a paperclip attachment along with some other columns that have various validations. When a form to to create an object cannot be saved due to a validation ...
4
votes
1answer
234 views

Custom attributes for CouchDB attachments

I am trying to store multiple standalone attachments in a single CouchDB document, and assign arbitrary attributes (i.e. description) to each one. Is there a convention for doing this? From what I ...
4
votes
2answers
2k views

Wordpress plugin to search into post's attachments (typically text file like doc or Pdf)

I'm looking for a plugin to extend the search into the content of attachments (typically text file like doc or Pdf).
4
votes
1answer
3k views

attach multiple files to an email programticaly without writing to disk

Our project has files stored in a sql server db as blobs. I'd like to get the files from the database and attach multiple files to an email without writing to disk. This is what I have so ...
4
votes
1answer
3k views

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 ...
4
votes
1answer
2k views

SOAP with Attachment (SwA) in C#

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 ...
3
votes
1answer
89 views

Gnus: How to save *all* attachments at once?

I would like to save all attachments to an email at once. I therefore set gnus-summary-save-parts-default-mime to ".* /.*". However, when using "X m", I not only get all attachments, but also a file ...
3
votes
1answer
403 views

Can I add an Outlook Attachment from a PictureBox image?

I have an image in my VB.NET Picture box. I would like to attach it to the email message I'm sending through Outlook without having to save it to the drive anywhere. Is it possible to do such a thing? ...
3
votes
2answers
721 views

Android ACTION_SEND Attached File

When you attach a file to an e-mail using the ACTION_SEND intent (with the extra EXTRA_STREAM) does the e-mail app copy that attached file to its own location? My app creates a file and attaches it to ...
3
votes
1answer
573 views

PHP mail with attachment - extra file: part 1.4

I'm using the following code to send an email with attachments: $mime_boundary = "<<<--==+X[".md5(time())."]"; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-Type: ...
3
votes
4answers
988 views

Changing filename of attachment in CFMail

I'm trying to use ColdFusion to send out emails containing attachments 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 ...
2
votes
1answer
63 views

Storing lots of attachments in single CouchDB document

tl;dr : Should I store directories in CouchDB as a list of attachments, or a single tar I've been using CouchDB to store project documents. I just create documents via Futon and upload them directly ...
2
votes
1answer
156 views

Redmine: Post attachments using API (or not)

Is there any way to post attachments to issues in Redmine from an outside PHP script? If API doesnt support this (i didnt find anything on the wiki) then is there another way? So far i have tried ...
2
votes
1answer
47 views

Safe way to support hosting files from asp.net mvc site

i have an asp.net-mvc site where users can add content and links and the data gets saved in a database. They now want the ability to upload attachments to pages and i wanted to figure out a few ...
2
votes
2answers
527 views

REALLY Need help - How to attach a video to an email ?? [2 new problems]

[UPDATE 2]: Hi there again, after still trying to attach a video to an email, I think (not sure though!) that I am a little closer to my goal, but I discovered two problems... PROBLEM 1: FILENAME ...
2
votes
1answer
2k views

Exchange Web Services - Processing Messages and Accessing Attachments

I'm in the process of writing a simple console app that monitors a particular exchange mailbox, and when emails meeting particular criteria are received, the app will download an XML file attachment, ...
2
votes
2answers
244 views

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 ...
2
votes
1answer
929 views

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 ...
2
votes
3answers
4k views

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; ...
2
votes
2answers
225 views

Round trip editing of binary documents stored on a server

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 ...
1
vote
1answer
33 views

How to force CouchDB to return attachments in base64 instead of MIME multipart/related?

As described in http://wiki.apache.org/couchdb/HTTP_Document_API#Getting_Attachments_With_a_Document , I can ask to return attachments together with the document attachments via ?attachments=true. ...
1
vote
1answer
55 views

Parsing emails with bad mime types in python

I am trying to use python's imaplib and email.feedparser to grab an attachment out of a gmail inbox. The email is generated by an external party and sent to us, so I have no control over it. The ...
1
vote
0answers
185 views

php mail-form with multiple file attachment plugin

<p><input type="file" name="file[]" class="multi" accept="gif|jpg"/></p> With the above, I can get all the results in $_FILES. However the pictures are not getting through the ...
1
vote
1answer
59 views

Converting JPEG in text format from email message source back into JPEG

I received an email a while ago with an image attachment in it. Since then, it seems hotmail has stopped hosting the image for me as when I open the message, the image is no longer available. ...
1
vote
0answers
70 views

Standalone attachments using CouchRest

Can some one give me an example of using CouchRest to store a standalone attachment in CouchDB? This is for a non Rails project. So something which does not involve CouchRest::Model would be nice. ...
1
vote
1answer
189 views

Ajax Response Content-Disposition attachment

I am building a website that communicates via javascript with a webservice that accepts posted json requests. I Post these requests using XMLHttpRequest. In some cases the service returns a download ...
1
vote
2answers
82 views

Is there a way to blacklist extensions in Paperclip?

I have an app that must accept almost every file type except those known to be malitious (ie exe, dll, bat, etc). I am using Paperclip and am wondering if there is a way to do this. Following the ...
1
vote
1answer
43 views

How to pass the senders email address when opening an attachment in your app

I'm trying to make an app that opens a certain file type when attached to emails. So i know how to get the file path which is passed when the app is launched, but is it possible to also have the ...
1
vote
4answers
204 views

Multiple attachments with in contact form [closed]

How can i make a contact form with the possibility to sent multiple attachements? I want only one upload field.
1
vote
1answer
284 views

Post audio file from WP7 to App Engine server(Java)

I have a Windows Phone 7 app (QuickNote) that allows users to record voice notes. I am trying to add a feature that will let users email their audio notes as an attachment. I use the XNA audio library ...
1
vote
1answer
273 views

Is it possible to create an email-attachment on a Silverlight email?

I need to be able to send an email from a silverlight client-side application. I've got this working by implementing a webservice which is consumed by the application. The problem is that now I need ...
1
vote
1answer
494 views

c# email object to stream to attachment

I'm trying to create and send an email attachment from an object which is a list of lists. I found a nicely documented answer here, but still have some confusion. It mentions "get some binary data" ...
1
vote
1answer
128 views

Wordpress Assign an Attachment to a post

I'm trying to assign an existing attachment (say it is attached to another post already) to a post, and also remove existing attachments from a post. What would be the best way to accomplish this?
1
vote
1answer
102 views

need to be able to email a document or a content of UIView

a noob question here. i would like to give the user a button that would prep an email with the content of a UIView attached. is this (easily) doable ? I know how to create a basic email, but not ...
1
vote
1answer
439 views

Content-Type Missing “start=” Tag in Java SOAP Client, Attachment not Found by Server

I am creating a Java client for a SOAP service that takes an attachment. I'm using java.xml.soap classes, which I have uses before, but not with attachments. The server claims that my attachment is ...
1
vote
2answers
473 views

How to show “Open In…” when a user tries to open email attachments in iOS

I've seen some iOS apps have this function: When a user tries to open an email attachment, they can press and hold on the attachment for a couple of seconds, and a popup menu will appear displaying ...
1
vote
1answer
187 views

iphone XML attachments

My iPhone app will be receiving an xml feed from a Java web service. The xml is in a SOAP message. I can easily parse data from within the xml however there is a jpeg attachment to the SOAP message ...
1
vote
2answers
320 views

How to read email attachment

What I have: A person daily sends to me an email, which has a zip'ed XML attachment. What I do: I save that attachment, unpack it and import via XML importerer to my web site. What I need: ...
1
vote
2answers
634 views

Standalone Attachments in CouchDB + Ruby

Has anybody succeeded in sending standalone attachments using the standalone attachment API (if possible gziped) to couchDB from ruby? I know there are a few CURL examples, but my tries with Typhoeus ...
1
vote
1answer
2k views

Downloading attachments to directory with IMAP in PHP, randomly works

I found PHP code online to download attachments to a directory using IMAP from here. http://www.nerdydork.com/download-pop3imap-email-attachments-with-php.html I modified it slightly changing ...
1
vote
1answer
2k views

ASP.NET Send Image Attachment With Email Without Saving To Filesystem

I'm trying to create a form that will send an email with an attached image and am running into some problems. The form I am creating is rather large so I have created a small test form for the ...
1
vote
3answers
476 views

Attach 1 or more (non image) files to rails application, with having to install an image-processing library

I'm currently learning rails by creating a simple project management app. I've gotten to the point where I would like to be allow a user upload multiple files - pdfs, docs, xls etc. The user only ...

1 2 3