Questions tagged [attachment]

Any additional content added to a digital object, such as an email attachment.

Many languages provide facilities for sending email or transmitting other data (e.g. SOAP) but may not always provide a clear interface for attaching documents or other arbitrary binary data to the message or object.

This tag is for all questions relating to adding attachments to transmitted data or providing an interface for doing so.

2942 questions
0
votes
1 answer

Wordpress default Attachment Post Type, to be listed in various plugins like other post types

How to make default wordpress attachment post type to be listed and available to various plugins like posts, pages, or any other custom post type? Thanks.
Lestra
  • 39
  • 6
0
votes
1 answer

Send Email using Power Automate and attached a file from folder in my pc to the email

I have excel files in folder in my pc and i want to use Power Automate tool to attached them in email and send them automatically to selected recipients I saw some tutorials, but all of them read from SharePoint and not from folder in pc
0
votes
0 answers

Microsoft Graph API - LargeFileUploadTask#upload() fail with "InvalidAudience" error

I'm working on the Graph API client app 'Send Email'. In order to attach a file (> 3MB) to an email message, I would like to use uploadAsync() or upload() method in the LargeFileUploadTask class, instead of…
0
votes
1 answer

How to include a double-quote in the ContentType value for an email attachment( System.Net.Mail.Attachment)?

I am attempting to attach an ICS file so that the recipient will see it as event in Outlook as opposed to an attachment. I am 2 characters shy of producing an email with an identical attachment and I suspect this is the cause of why Outlook is still…
Jay Cummins
  • 1,039
  • 2
  • 14
  • 31
0
votes
0 answers

Adding attachments to an HTTP POST email via Power Automate

Within Power Automate I have a 'no-reply' email being generated automatically (via HTTP POST request) which includes dynamic form data. The form allows for the upload of up to 10 files (eg images) to SharePoint (Apps/Microsoft Forms). The files…
James
  • 1
0
votes
1 answer

Problem sending attachment information in JS function to C# method

I have a problem with sending an attachment in a JavaScript function to a C# method. When I want to send the information to the method that is supposed to save the information about the attachment, I get a problem with inllegal invocation. below is…
Maksio
  • 23
  • 6
0
votes
0 answers

php not sending attachments to email

I'm attempting to send multiple files to my email but not are attaching properly. This is what I'm receiving: Here is what my form looks like:
0
votes
1 answer

Problem with filestore and ir_attachment Odoo 15

Good morning, I would like to post a doubt, I'm migrating my Odoo 10 to Odoo 15, I copied the filestore folder to my Odoo 15. The problem is the next one, I have a custom module called hr.inventario, this module has 200 PDFs stored, I could import…
0
votes
0 answers

TYPO3 Powermail file name for attachment from variables

I have used the extension: pdfviewhelpers to create a PDF from my Powermail form for download. The name of the PDF is generated from 2 variables {name} and {firstname} and stored in the TYPO3 backend in a folder…
0
votes
1 answer

Attach files to file section from process screen does not work in Acumatica

I want to attach a report pdf to files section of an invoice n Acumatica. I tried the below code snippet. It works for a single invoice only. But when we process multiple invoices from Process Invoices screen, file is attaching only for first…
John C
  • 1
  • 1
0
votes
0 answers

How do I bulk edit an attribute for multiple locales in akeneo community edition

We are using Akeneo Community Edition version 6.0.44, I have recently created a file attachment to our products now our product management wants to know how to bulk edit these attributes. Currently, when I bulk edit attribute values for products I…
FUZIION
  • 1,606
  • 1
  • 6
  • 19
0
votes
1 answer

Save Django attachments from a form

Good morning, I would greatly appreciate your help, I am starting to use Django and I am making a web application that allows workers in a job to attach their documentation (files) through a form. The problem is that at the moment of pressing the…
Rikardo
  • 5
  • 1
0
votes
1 answer

Customizing GetStream Attachment Picker component in React Native

I am specifically interested in enhancing the Attachment Picker to include more functionality or changing its appearance based on my app's requirements. To provide a clearer understanding, I have attached a screenshot of an example menu that I would…
0
votes
1 answer

How to send attatchments through webservice using iphone sdk?

In My application i have to send a file(audio,image,text and vedio etc..) to server using webservice. Here i am sending bytes to application using base64binary string. But here data is corrupted. Is there any way to sending base64binary to…
KAREEM MAHAMMED
  • 1,675
  • 14
  • 38
0
votes
1 answer

How can you convert from an Attachment to a byte[]?

I have the next part, which is where I use Microsoft Graph to download an attachment, but I'm at the part where I already get the attachment, but how do I pass that what is returned as an Attachment can be passed to a byte array? The following is…