Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

6
votes
2answers
1k views

delete attachment file

i am using System.Net.Mail for sending mail in asp.net.. how to delete attachment file after it is send as attachment mail.. i tried to use File.Delete method.. but i am getting this error.. the ...
5
votes
2answers
164 views

C# Email Attachment name

I add an attachment like this: System.Net.Mail.Attachment Attachment = new System.Net.Mail.Attachment(AttachmentPath); msg.Attachments.Add(Attachment); But I want to make it attach as a different ...
4
votes
2answers
446 views

Zend Framework: How to read email attachments (and save to disk)?

I am currently using Zend_Mail_Storage_Imap to read email messages using IMAP. I am able to read the email body (text and html) thanks to the documentation. Now I'm trying to figure out how to save ...
3
votes
5answers
405 views

Magento : How to send contact form email with attachment in magento?

Is there any default functionality in Magento for a simple contact form that needs to send a file attachment? Or do I need to customise it with Zend's mail function? Any help or suggestions would be ...
3
votes
1answer
159 views

Email Attachment Encryption - RSA or AES?

I'm developing an email server from scratch for a custom project. I understand RSA and AES but where I am lost is in handling attachments. I want to send Alice a signed message and I also want to send ...
3
votes
2answers
3k views

How to send email with an attachment using Windows Phone 7 API?

My WP7 application requirement is to send the email with an attachment and use device default SMTP settings. I have tried EmailComposeTask class but it doesn't have any member for attachment. The ...
3
votes
3answers
229 views

Want to automatically process email attachments based on username and subject

I'm seeking advice about setting up an email gateway so students can email me homework and the email will be processed automatically. For example, if a studenta@univ.edu emails me with a subject of ...
3
votes
1answer
926 views

php create file and send as attachment without actually creating the file

I know how to read a file on the server and attach it to an email in PHP, but I wanted to know if I could attach a file that is created by my script but not created on the server (kinda like a temp ...
2
votes
1answer
91 views

PHP attach file to email

I want to be able to attach a file to an outgoing email. I have the code for how to do this in a separate file called upload.php, but I want to know if I can put it all in index.php, since index is ...
2
votes
2answers
167 views

MIME “multipart/related” Structure and Apple Mail. Is it a Bug?

I build a E-Mail with PHP Zend Framework Class Zend_Mail. There is one text- and one html-part with related inline-images. I want to attach one pdf-file too. My question is about the mime-structure. ...
2
votes
2answers
258 views

C# - Attach file saved in database to an email

How can I add one or more files that are saved in a MS SQL database to an email? I already know how to attach files saved in a directory or from a fileUpload control. My datable fields are as such: ...
2
votes
2answers
180 views

phpMailer sending attachment name, not attachment

Hi I have a file upload field with name="file1" and code in a phpmailer script: if (isset($_FILES['file1'])) { $file1_path = $_FILES['file1']['tmp_name']; $file1_name = $_FILES['file1']['name']; ...
2
votes
2answers
149 views

How to Email a Django FileField as an Attachment?

I need to send a models.FileField as an email attachment using Django. I've seen snippets that show how to do this with the raw request.FILES data (which still contains the Content-Type), but have not ...
2
votes
1answer
586 views

Android: Intent for receiving email attachment

I still haven't quite got this "Intent" thing down when it comes to the details. What I'd like to do is to receive an intent when a certain email attachment is opened. The attachment will be a file ...
2
votes
2answers
298 views

how to attatch a file to the mail using default mail composer

i hav a file with some data and i want to attach this file to mail, and i am using the default mail composer ... any idea how to attach the file to mail before sending to receipents.... Thanks in ...
2
votes
1answer
195 views

android: Email an XML string (in-memory file) as an attachment

How can I email an XML string (or an in-memory file) in android as a file attachment without actually creating a physical File? I want to just build an XML data string (backup data) and have the user ...
2
votes
2answers
273 views

What is wrong with this mail header text?

The following $header is being sent via PHP's mail($to,$subject,$content,$header) command. The mail arrives and appears to have an attachment. But the mail text is empty as is the file. I think this ...
1
vote
1answer
31 views

Image attached in email is not received

i am trying to programmatically attach an image to an email body from my app .I've seen some topics about how to do that and put my code exactly the same way but it's useless i don't get the image in ...
1
vote
2answers
53 views

Save attachment to outlook folder

I have a number of emails from my previous email provider that I have forwarded on to my outlook 2010 inbox folder Received. The problem I have is the original email has been sent as an attachment ...
1
vote
0answers
50 views

Trying to send a created text file as an email attachment - from a default folder

I am trying something simple as creating a text file and then send it as attachment. While it works fine if I use the sdcard I don't know where to put it in the "standard data folder" so my app works ...
1
vote
1answer
141 views

C# MVC Send an email attachment of a print screen image

This is for printing screen, using System.Drawing; using System.Drawing.Imaging; Bitmap printscreen = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height); ...
1
vote
2answers
240 views

Sending Sqlite database as email attachment in Android

I have a simple app which I am using to spike sending attachments. I have managed to send a text file from the SD card (although I couldn't get this to work with a file created in the apps private ...
1
vote
1answer
168 views

Zlib deflate file when added as attachment in email could not open

I m using Zlib to compress a text file by using NSData category as discussed in http://www.cocoadev.com/index.pl?NSDataCategory . After compressing I m attaching the file to an email. When I open the ...
1
vote
2answers
754 views

Exceeded storage allocation. The server response was: 4.3.1 Message size exceeds fixed maximum message size

I am using SMTPclient to send mail with attachment. When the attachment is more than 2mb, I am getting the below error: ** "Exceeded storage allocation. The server response was: 4.3.1 ...
1
vote
1answer
234 views

Google appengine Send local gif as an email attachment

I'm trying to send a local gif as an email attachment on Google appengine. The email will send but without an attachment. message = mail.EmailMessage(sender="My image <whomever@gmail.com>", ...
1
vote
1answer
306 views

Perl & MIME::Lite - Why are my .txt attachments blank?

I've been using MIME::Lite for a short while now and have had no issues until now. I'm trying to attach a .txt file, but the file (after sent) has no content inside of it. I know the file has ...
1
vote
2answers
904 views

Intent filter for email attachments

I want to open audio attachments in emails with my app. Currently my intent filter is like so: <intent-filter> <action android:name="android.intent.action.VIEW"/> ...
1
vote
2answers
551 views

Sending an email with an attachment from an application

I'm creating an app that has an "export" feature which converts the user's data into a CSV file, and allows the user to send it as an attachment to somebody (presumably themselves). The CSV file is ...
1
vote
1answer
401 views

RegEx to find in-line images in a plain text email message

Certain mail clients allow for the sender to place images directly in the body of their email (instead of as a traditional attachment). When I receive one of these emails in my application, I need to ...
1
vote
1answer
240 views

Fetching gmail attachments directly from server without imap

I am writing a firefox greasemonkey script which is supposed to run inside gmail and allow users to submit all attachments from a gmail conversation thread to my server. I only see two ways of doing ...
1
vote
1answer
669 views

Rails: Email a pdf generated with prawn to an email sent by ActionMailer?

I have an ecommerce app. I'm using Prawn to generate pdf invoices of orders. I'm using a standard Prawn setup. In views/admin/orders, I have a file called show.pdf.prawn. When the seller is ...
1
vote
0answers
553 views

Excel VBA Error when adding attachments using CDO.Message “Object doesn't support this property or method”

VBA/Excel Macro Programming - I'm trying to automate sending out an email with an Excel attachment. When I try and add an attachment, I get the following error: "Object doesn't support this property ...
1
vote
1answer
166 views

Download attachment issue with IE6-8 wih no SSL

I'm facing an issue with file download with IE6-8 in non ssl environment. I've seen a lot of articles about the IE attachment download issue with ssl. As per the articles I tried to set the values of ...
1
vote
2answers
862 views

Dynamically generate PDF and email it using django

I have a django app that dynamically generates a PDF (using reportlab + pypdf) from user input on an HTML form, and returns the HTTP response with an application/pdf MIMEType. I want to have the ...
1
vote
2answers
925 views

ASP.NET: How to download email attachments with POP3?

I am building an email receiving website. I can read the email with the help of code used in Code Project, but I can't download email attachments. Can anyone tell me how to download email attachments ...
1
vote
5answers
752 views

How to send email with attachment using PHP?

I am using following code for sending email with attachment but the proper file is not getting attach with mail. $UnidID = $_COOKIE['UniqueID']; $guid = $_COOKIE['guid']; $target_path = ...
1
vote
2answers
4k views

save all email attachments in outlook folder to folder

I have about 80 emails, all with attachments which I would like to save to a folder on my hard drive. Rather than open each message and go to save attachments, I'm looking for a script that can do ...
1
vote
2answers
396 views

How Do I Prevent Email Attachments from Rendering Inline using ActionMailer

I am using the following code to send an email with a pdf attachment: class StudyMailer < ActionMailer::Base def notify_office(study, sent_at = Time.now) subject "Email Subject Goes Here" ...
1
vote
3answers
1k views

Base64 encoding on the iPhone, works in simulator, breaks on device

I am using the simple SMTP client code, first posted on google code at: http://code.google.com/p/skpsmtpmessage/ That repo seems to have gone unmaintained, as the project owner is now employed at ...
1
vote
1answer
2k views

Objective C : How to send Email w/ attachment with iPhone OS v2.2.1?

Objective C : How to send Email w/ attachment with iPhone OS v2.2.1 ? I don't really want to setup a web server for this purpose as described in ...
1
vote
3answers
971 views

How to set a nice name for an e-mail (System.Net.Mail.SmtpClient) attachment

I'm sending attachments using the System.Net.Mail.SmtpClient in C#. The attachment names are the same as the name of the file I pass into the attachment constructor myMail.Attachments.Add(new ...
1
vote
4answers
180 views

What's a good theoretical MAX_SIZE when managing email attachments?

I'm working on a part of a website where I generate PDFs, attach them to an email and send it off. Right now I am not tracking the current sum of the sizes of all the PDFs to be attached to the ...
0
votes
1answer
29 views

PDF Not Attaching to Email When Multiple Pages

This is been driving me crazy. The app creates a PDF and it attached to the email just fine when the PDF is only one page. However, if the PDF is more than one page the file will not attach to the ...
0
votes
2answers
27 views

Sending files from server via email within app

I'm a little lost on how to achieve this problem. We have a list of files brought into a app linking to the files stored on a remote server. Currently when the file is selected in the list, it opens ...
0
votes
1answer
27 views

Sending javaMail attachement of any type from database

I'm have domain class with property that represents files uploaded on my GSP. I've defined that file as byte array (byte [] file). When some specific action happens I'm sending mail with attachments ...
0
votes
0answers
16 views

Optimize generation of attachment list of an email account

I have written a code (using PHP mail examples from this site) to generate a list of Attachment filename & size. The code works fine but it takes about 10min to create the whole list (about 6k ...
0
votes
2answers
130 views

pdf as an email attachment in iOS device [closed]

I would like to attach pdf created as an email attachment. I used following tutorial to create pdf on iOS device. The downloaded pdf can be viewed at this path: ...
0
votes
0answers
26 views

C# Attachment Notification on all Emails Sent Through Application

I have a simple winform application that builds and sends an email. I have set the notification to high priority but I do not attach anything to the emails and with each email I get an attachment ...
0
votes
1answer
65 views

Sending javaMail attachement from database records

In database table I have 3 byte array fields which hold sqlType longblob (jpg, png, gif). How to implement logic for sending these files with javaMail as attachements? I'm only interested in making ...
0
votes
3answers
84 views

Download attachment from email

How can I browse the email and download all attachments ? public string Connect_Email() { string Res = ""; try { ...

1 2 3