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
1 answer

How to send HSSFWorkbook xls via email in java springboot?

So I have my own java springboot code that writes an excel spreadsheet with a List from my local directory. Basically it just takes the list of files in a directory I want, and then lists out the contents of each zip file in the directory into an…
stackerstack
  • 243
  • 4
  • 16
0
votes
1 answer

Modify Twilio sample code to attach voicemail recoding and send by email

The following post from Twilio explains how to write and implement a function for sending the link of a recorded message to email. https://www.twilio.com/blog/forward-voicemail-recordings-to-email I want to attach to the voicemail recording rather…
Walrus
  • 19,801
  • 35
  • 121
  • 199
0
votes
0 answers

Generate a dynamic URL within email HTML

I am having trouble finding a solution to this and would love to any thoughts or suggestions. The overall aim is to dynamically generate a private link within an email, used to register/login users anonymously. Only those with a link will be able…
0
votes
2 answers

type 'List' is not a subtype of type 'List'

I use the flutter form builder to get image with camera/gallery and then I want to attach them to an email(I use mailer for this) but when I try to send the email I get the following error: type 'List< dynamic >' is not a subtype of type 'List<…
0
votes
1 answer

Issue attaching file to MS Graph email in Angular 9

I'm adding file attachment functionality to an Angular 9 web app but have run into an issue. The MS Graph API reference says that any file should be based64 encoded before being used and I've done this but I get the following…
Mark Beynon
  • 265
  • 1
  • 3
  • 19
0
votes
0 answers

Adding attachment into the current Email Python Program

I am trying to attach the file with a message in this program, so I can send an email message along with the attachment but I'm unable to do it. it would very nice if anyone helps me out with my final assignment! Thanks in Advance import pandas as…
0
votes
1 answer

How to add a attachment into GMail per script

I have created the following script to add a file to a GMail: function mySendEMail(NIDMail) { var mySubject = "This is only a Test"; var myURL = DriveApp.getFileById(NIDMail).getUrl(); var myBody = "Hello World,\n\n"; myBody = myBody +…
J. Doe
  • 151
  • 12
0
votes
0 answers

How to send message through sql with an image

In my SQL, I already created profile & account. I also know how to send the message though code : USE msdb GO EXEC sp_send_dbmail @profile_name='yourprofilename', @recipients='test@Example.com', @subject='Test message', @body='This is the body of…
Chong
  • 1
0
votes
1 answer

Dynamics AX 4 issue with x++ email attachment

I want to send emails with attachment but I'm using AX V4 which is a 32 bits version and my office version is 64 bits so I can't use integrated email attachment with reportSendMail() method of Info class, I'm using the following code with…
Thomas Post
  • 535
  • 2
  • 11
  • 27
0
votes
1 answer

Msgraph - download .eml as itemAttachment from msgraph api

I got method called createObjectFromNotification that creates email from notification resource.url sample https://graph.microsoft.com/v1.0/me/messages/AQMkAGFkYmM2YzJiLTM3OTItNDE0ZS1iMmIw we get the message attachment in the same api call then…
Mina Fawzy
  • 20,852
  • 17
  • 133
  • 156
0
votes
0 answers

Contact Form 7 file attachments not attaching to email

Apologies if this has been answered before but sadly, I read through multiple similar posts and none of the solutions applied to my situation. As stated in the title, my form works correctly in sending me emails but doesn't include the file…
0
votes
1 answer

Is there a way to use JavaScript with the HTML to uplaod a file that attaches to an HTML-generated email?

(DISCLAIMER: I am very new to HTML/CSS/JavaScript, so apologies if my code is whacky) I am looking for a way to generate an email with an email attachment. Here is my code:
Dan G
  • 51
  • 8
0
votes
0 answers

How To Improve Speed Send Mail With Larg Attachments Using Nodemailer

Sorry my English is not good, I hope everyone understands. I have api send mail using nodemailer. If you choose a file >10mb, the process of sending mail takes 100 seconds. How can it be faster?
0
votes
1 answer

File not sending via cron job (PHP script)

I'm trying to create a cron job that sends an email with a file attachment once a day. I'm using a simple PHP script to test this and it works fine when I go to the URL and run it. However, when running it via the cron job, the email is sent but not…
James
  • 37
  • 5
0
votes
1 answer

UTF-8 characters in Java Email with Excel as attachment

I'm working on a legacy application in which i have to send an email with special characters (utf-8) in email body as well as in the attachment (Excel, xls file). I've tried a lot on this. Special Characters are not shown correctly in the attachment…
Sahil Kumar
  • 39
  • 1
  • 3
  • 9
1 2 3
99
100