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 form data with attachments + send the data to spreadsheet

I'm trying to send the form data to spreadsheet and send an email with the data + attachments. My current code might be a mess a little bit, cuz before it was sending the data to firebase db, but now I reworked it to send the data to spreadsheet…
tobig
  • 19
  • 4
0
votes
2 answers

Can I add a file path from a cell in Attachments.Add?

I'm trying to create an email for every row of data on my sheet. It seems to be working until I add the .Attachments.Add line. I am trying to identify the file path from a cell. Sub CreateEmails() Dim objOutlook As Object Set objOutlook =…
0
votes
2 answers

Apply one of two results to incoming email with Item_Add

I have the following code in ThisOutlookSession. Only the second sub is saving to the folder. (When I had only the first part, this worked perfectly.) Is there a way both files from different domains can be saved into their own folders? I am using…
0
votes
1 answer

How to send a generated pdf attachment with email .net-core

I am trying to send a pdf as an attachment via email but the file being sent is corrupt. What might be causing this please? I have provided the code i am using below, I am using the iText7 library. byte[] file =…
MMM
  • 23
  • 1
  • 1
  • 7
0
votes
1 answer

Gmail Attachment download issue in java

I am downloading audio files from gmail by using imap in java . audio files successfully downloaded and gets played. often around 5.00 AM IST, file not getting downloaded. getting Exception like "java.lang.NullPointerException". yesterday i faced…
Justin
  • 855
  • 2
  • 11
  • 30
0
votes
1 answer

Decrypt Email with Attachments using mimekit

We have a scenario to decrypt emails which has attachments. We are using mimekit library for the same. We also use mimekit for the email encryption and it works properly. In our case the encrypted email is only having an attachment, no such email…
skjcyber
  • 5,759
  • 12
  • 40
  • 60
0
votes
1 answer

how to published assertion failure in email alerts through jenkins

How to publish this assertion error in post build action in email alerts ? Currenlty only build status is published in email alert using Editable Email notification in Postbuild, Need the reason also in email alerts
GPs
  • 67
  • 1
  • 10
0
votes
0 answers

ASP.NET MVC : get value from view to controller

I have create a WebGrid in ASP.NET MVC. In this WebGrid I show two links: webGrid.Column("", format: item => Html.ActionLink("PDF", "ExportPDF", new { id = item.sID }, new { target = "_blank" })), webGrid.Column("", format: item =>…
0
votes
1 answer

Import Report from Sheet to Email using Google Apps Script

I have report in google sheet in which data is populated regularly. I want to send this Google sheet report to specific email address using google apps script. I have tried different things to capture that report into email body so that receiver can…
user12736831
0
votes
1 answer

Sending attachments via PowerShell from Azure Storage

When I follow the guidance from this website https://adamtheautomator.com/send-mailmessage/ Why does the test result state that it's unable to find the file, even though the file appears in my Azure File Explorer? Below is the code: $Username…
0
votes
3 answers

how to catch the selected attachment items from contex menu inside outlook attachment menu

i develop in Delphi 10.3 (RIO), writen outlook add-in using add-in-express ver 9.x i want to chach just "selected" files from attachment list. i add button to adxRibbonContextMenu object, when i click on the right button with the mouse on one…
mazluta
  • 89
  • 7
0
votes
1 answer

Google App Script Email as PDF from Spreadsheet

My code below for generate PDF attachment is working fine but they send all data in the spreadsheet. Anyone can help to send only the specify spreadsheet like my code only sheet"Email" in stead of All sheets ? Thank you function SendEmail() { try…
Tu PHAN
  • 59
  • 6
0
votes
0 answers

Extract only excel documents from an email message

I have the below code which works great, extracts attachments from all emails that are stored in a folder. I only want to extract the .xlsx files from the emails. I don't know how to modify the code to only select the .xlsx files. Thanks, Public Sub…
David R
  • 3
  • 3
0
votes
1 answer

how to send link with email using node js and express

I am unable to send click able link via email . Here is my code const data = { from: "me@samples.mailgun.org", to: email, subject: "password reset", html: `

Hey ,we received you have to reset your account password ,${currentDate}…

0
votes
1 answer

Base64 coded attachments to e-mails in Public Record Request from City Government

In a public record request to a city government, I have gotten back a number of records that are .txt format of e-mails with attachments appearing to be base64. The e-mail attachments are jpegs, pdf, png, or doc in base64 a shorter example is below.…
1 2 3
99
100