Attempting to Attach a CSV, Converting to PDF

Joseph Eisenreich

I have a code where I am attempting to attach a CSV saved in Drive (automatically replaced) to an email. At the moment, I can get it to add using fileBlob - DriveApp.getFileById(...).getBlob() but, it's attaching as a PDF.

Per Mogsdad's answer on this question there is a way to attach a CSV, but looking through the documentation I can't seem to find anything that will allow using a CSV. In fact, according to the documentation for getAS() it literally says: "For most blobs, 'application/pdf' is the only valid option. For images in BMP, GIF, JPEG, or PNG format, any of 'image/bmp', 'image/gif', 'image/jpeg', or 'image/png' are also valid."

Does this mean in is impossible to attach a CSV (or, really, anything other than PDF) from Drive to an email using Apps Scripts?

Amit Agarwal

Assuming the CSV file is in your Drive, you can use this snippet to attach it to an email.

function sendCSV() {
  var blob = DriveApp.getFileById(FILE_ID).getBlob();
  MailApp.sendEmail("[email protected]", "Subject", "CSV", {attachments:[blob]});
}

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

attach compressed file to PDF

分類Dev

Converting PDF to PDF/A? (for embedding fonts)

分類Dev

Python TypeError attempting to writerow back to CSV file

分類Dev

Converting CSV to JSON Solution

分類Dev

Converting file to CSV

分類Dev

Attach digital signature to pdf using mssp

分類Dev

Converting JSON data into CSV spreadsheet

分類Dev

Issues in converting CSV file in to XLS

分類Dev

Converting PDF to Color PCL 5 with Ghostscript

分類Dev

Converting hundreds of jpg to PDF using Terminal

分類Dev

Converting a PDF file to a Text file in Python

分類Dev

How to attach a file (pdf, jpg, etc) in a SOAP POST request?

分類Dev

How do I attach a pdf file to a Gravity Forms Notification?

分類Dev

Yii2 - Generate Pdf on the fly and attach to email

分類Dev

Use Rails 5.2 ActiveStorage to create and save pdf and later attach to email

分類Dev

Converting a google doc to a pdf results in blank pdf, google scripts

分類Dev

Converting JSON to CSV w/ Pandas Library

分類Dev

Converting CSV to fixed-width in Notepad++?

分類Dev

Android, Attempting to view a PDF within my Xamarin android application using muPDF

分類Dev

How to keep margins when converting PDF to EPS outlines using Ghostscript?

分類Dev

Custom font works in Windows but not in Ubuntu when converting html to pdf with itext

分類Dev

inotifywait triggering event twice while converting docx to PDF

分類Dev

Rmarkdown converting to pdf: show base hist plot but not the output afterwards

分類Dev

how to convert PDF to PNG without converting white background intro transparency

分類Dev

Converting .CSV to .DBF(dBASEIII) VFP 6.0, everything becomes memo field

分類Dev

converting CSV column values into multiple rows using Dataframe

分類Dev

Python: Keep leading zeroes when converting from excel to CSV with pandas

分類Dev

Converting a spark dataframe that contains Vector as a feature into CSV file

分類Dev

Including column names when converting an .mdb file to .csv in Python

Related 関連記事

  1. 1

    attach compressed file to PDF

  2. 2

    Converting PDF to PDF/A? (for embedding fonts)

  3. 3

    Python TypeError attempting to writerow back to CSV file

  4. 4

    Converting CSV to JSON Solution

  5. 5

    Converting file to CSV

  6. 6

    Attach digital signature to pdf using mssp

  7. 7

    Converting JSON data into CSV spreadsheet

  8. 8

    Issues in converting CSV file in to XLS

  9. 9

    Converting PDF to Color PCL 5 with Ghostscript

  10. 10

    Converting hundreds of jpg to PDF using Terminal

  11. 11

    Converting a PDF file to a Text file in Python

  12. 12

    How to attach a file (pdf, jpg, etc) in a SOAP POST request?

  13. 13

    How do I attach a pdf file to a Gravity Forms Notification?

  14. 14

    Yii2 - Generate Pdf on the fly and attach to email

  15. 15

    Use Rails 5.2 ActiveStorage to create and save pdf and later attach to email

  16. 16

    Converting a google doc to a pdf results in blank pdf, google scripts

  17. 17

    Converting JSON to CSV w/ Pandas Library

  18. 18

    Converting CSV to fixed-width in Notepad++?

  19. 19

    Android, Attempting to view a PDF within my Xamarin android application using muPDF

  20. 20

    How to keep margins when converting PDF to EPS outlines using Ghostscript?

  21. 21

    Custom font works in Windows but not in Ubuntu when converting html to pdf with itext

  22. 22

    inotifywait triggering event twice while converting docx to PDF

  23. 23

    Rmarkdown converting to pdf: show base hist plot but not the output afterwards

  24. 24

    how to convert PDF to PNG without converting white background intro transparency

  25. 25

    Converting .CSV to .DBF(dBASEIII) VFP 6.0, everything becomes memo field

  26. 26

    converting CSV column values into multiple rows using Dataframe

  27. 27

    Python: Keep leading zeroes when converting from excel to CSV with pandas

  28. 28

    Converting a spark dataframe that contains Vector as a feature into CSV file

  29. 29

    Including column names when converting an .mdb file to .csv in Python

ホットタグ

アーカイブ