Class Attachment

Attachment

Deprecated.This class is deprecated and should not be used in new scripts.

A Sites Attachment such as a file attached to a page.

Note that an Attachment is a Blob and can be used anywhere Blob input is expected.

 var 
  
 filesPage 
  
 = 
  
 SitesApp 
 . 
 getSite 
 ( 
 'example.com' 
 , 
  
 'mysite' 
 ) 
 . 
 getChildByName 
 ( 
 "files" 
 ); 
 var 
  
 attachments 
  
 = 
  
 filesPage 
 . 
 getAttachments 
 (); 
 // 
  
 DocsList 
 . 
 createFile 
  
 accepts 
  
 a 
  
 blob 
  
 input 
 . 
  
 Since 
  
 an 
  
 Attachment 
  
 is 
  
 just 
  
 a 
  
 blob 
 , 
  
 we 
  
 can 
 // 
  
 just 
  
 pass 
  
 it 
  
 directly 
  
 to 
  
 that 
  
 method 
 var 
  
 file 
  
 = 
  
 DocsList 
 . 
 createFile 
 ( 
 attachments 
 [ 
 0 
 ]); 

Methods

Method Return type Brief description
Blob Return the data inside this object as a blob converted to the specified content type.
Blob Return the data inside this object as a blob.

Detailed documentation

getAs(contentType)

Return the data inside this object as a blob converted to the specified content type. This method adds the appropriate extension to the filename—for example, "myfile.pdf". However, it assumes that the part of the filename that follows the last period (if any) is an existing extension that should be replaced. Consequently, "ShoppingList.12.25.2014" becomes "ShoppingList.12.25.pdf".

To view the daily quotas for conversions, see Quotas for Google Services . Newly created Google Workspace domains might be temporarily subject to stricter quotas.

Parameters

Name Type Description
contentType
String The MIME type to convert to. 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. For a Google Docs document, 'text/markdown' is also valid.

Return

Blob — The data as a blob.


getBlob()

Return the data inside this object as a blob.

Return

Blob — The data as a blob.

Deprecated methods