Questions tagged [email-attachments]

Email attachments are file(s) that are sent along with an email. Use this tag for programming questions related to attaching files to an email message, receiving such files, or processing them (e.g. as part of a mail forwarder or spam filter). Non-programming support questions related to email attachments (e.g. what to click on to add an attachment) are off-topic here, but may be suitable elsewhere on the network.

An email attachment is a computer file sent along with an email message. One or more files can be attached to any email message, and be sent along with it to the recipient. This is typically used as a simple method to share documents and images. A paper clip image is the standard image for an attachment in an email client.

Most mail providers also impose a restriction on the file size of email attachments. For example, Gmail restricts the total email attachment size to 25 MB.

It is also common for some mail providers to block certain emails based on email attachment file types due to security issues.

This tag may relate to:

  • The process of attaching any file with an email
  • The file itself
2599 questions
0
votes
0 answers

send each PDF file in separate email automatically using VB

I'd like to ask you for some help with my problem. I'm trying to automate sending emails with attachement separately using VB There is a folder with few PDF files to attache to the mail the file name start with a code of 4 digits XXXX_* this code is…
user9067306
0
votes
1 answer

Kotlin - CSV file sharing request contains no data

for my app i'm attempting to create a csv file and share it via email/google drive. however when i go to share the csv file, im am presented with the following "toast" . The code is located within a fragment. upload was unsuccessful request…
ced452
  • 41
  • 7
0
votes
0 answers

Best Practice to Send Unique Booking QR Code to customers through e-mail in ASP.NET Core MVC

I'm developing a room booking website using ASP.NET Core MVC. The requirement is that every time when customer do the booking, the system will assign a unique booking Id and generate the QR Code for that Unique booking number and send an email with…
0
votes
2 answers

Xamarin EmailAttachment does not add attachment on iOS

I am using the stock code found here to add attachments to an email. It works fine in Android. When I run it on iOS, everything works except there is no attachment on the message. The mail client launches and I see the address, subject, and…
Josh
  • 10,352
  • 12
  • 58
  • 109
0
votes
1 answer

Using MailKit IMAP to read and save attachment to file share. Getting stream.Read, stream.Write timeout errors

I actually had this working for .pdf files and could not get it to work for .xls. Now I cannot seem to get ether to work. Note I have looked at all other post from jsteadfast and this is the code I came up with. When I read the Message I have…
tirwin
  • 3
  • 2
0
votes
1 answer

Saving attachments in Outlook emails using python

I am trying to scan my outlook inbox based on subject and sender email and then trying to download any attached files locally in a specific location. This code currently runs forever without detecting an email with the desired sender address and…
daniel
  • 37
  • 2
  • 9
0
votes
2 answers

Send email with attachment 'is not a function error'

I would like help to resolve the error when executing this function. file.next is not a function error function myFunction() { var ss = SpreadsheetApp.getActiveSpreadsheet(); var sheet_bd = ss.getSheetByName('BD'); var numRows =…
0
votes
1 answer

Can we send other report file as attachment along with SSRS subscription report?

I have a monthly report which I send to users every month using SSRS subscriptions (delivered by email.) My requirement now is to attach one more report as attachment along with Monthly report. So the user has to receive Monthly report and…
0
votes
1 answer

Save PDF attachments only using If UCase + SaveAsFile + SenderEmailAddress

I have two VBA macros that are slightly different and I want to combine the best of both. Both save attachments within a selection of emails, however: Macro A saves every attachment within the selection as a PDF. Some are JPEG signatures or…
Yann
  • 3
  • 1
0
votes
1 answer

how to email html report of Jmeter execution via Jenkins the one which we get using -e -o in command line?

I want to integrate Jmeter with Jenkins for Functional and Performance testing. (Hope Jmeter is good for Functional testing and Performance both). Have created a Freestyle project with Necessary plugins, Performance, and Editable Email ones. I am…
0
votes
2 answers

Save Outlook attachment from a specific date using Python

I would like to know how I could add the date to this code to save the attachment files n emails from Outlook: for example, I would like to save the files found between 20/04/2020 and 01/01/2020. Do you have any idea, please? outputDir =…
Chaa MH
  • 73
  • 7
0
votes
2 answers

How to store attachment file in an email in a database?

I used this code to store attachment xlsx files from a specific address email in Outlook, but now I would like to store these files in a database in SQL Server, not in a folder in my laptop? Do you have any idea about how to store these files…
0
votes
0 answers

How to send email with in memory zipped attachments in Python

There are multiple topics about sending emails with attachments and creating zip in-memory. Still, it took time for me to combine information from different topics to write code that can create in-memory zip and sends it as a mail attachment. The…
Alex
  • 2,009
  • 6
  • 24
  • 27
0
votes
1 answer

Compiling condition across multiple worksheets to output 1 "solution". Also call out which worksheets(s) fit the condition

I am new to vba and struggling with trying to accomplish having a single overall email send out if any worksheet column L/M have a value below 1 and want it to call out which sheet (or sheets) had the value <1 in the email body or subject line. I…
Kenna
  • 1
  • 1
0
votes
0 answers

How to open Outlook's new mail window with prepopulated attachment? (PHP)

I need to open an new outlook mail window with propulated attachments from the website when a user clicks some button or link in my application. I have no idea how to do that. I tried PHPMailer but it is not helping me. Thanks alot