Skip to main content
Make Step

Input

NameDescriptionRequired
Import OptionsSelect the input source for attachments: Upload Files or Input Link(s).Yes

Upload Files
NameDescriptionRequired
DataUpload a file using raw binary data from another module. Note: This requires additional credits as it first uploads to PDF.co Temporary Files Storage.Yes
Input Link(s)
NameDescriptionRequired
URLProvide URLs to source documents, separated by commas. Example: https://example.com/sample1.pdf,https://example2.com/sample2.pdf. Ensure links are publicly accessible if using services like Google Drive or Dropbox.Yes
NameDescriptionRequired
Email FromSpecify the sender’s name and email. Example: John Doe <john@example.com>.Yes
Email ToDefine the recipient’s name and email. Example: John Doe <john@example.com>.Yes
SubjectThe subject line of the email.Yes
Body TextThe plain text version of the email message.Yes
Body HTMLThe HTML version of the email message.Yes
SMTP ServerThe SMTP server address. For setup details, refer to the SMTP Configuration Guide.Yes
SMTP PortThe SMTP server port.Yes
SMTP User NameThe SMTP server username.Yes
SMTP PasswordThe SMTP server password.Yes
Execution ModeSelect Sync for small tasks up to 10 seconds. Choose Async for standard jobs, or Async For Large Docs for tasks over 30 seconds. Use Job Check module for retrieving results in large tasks.No
ProfilesAdd custom options for the process in a JSON string format. See API Profiles for more details.No

Output

NameDescription
StatusIndicates the response status code. A success status is returned if the operation is successful.
outputLinkValidTillSpecifies the timestamp until which the url remains accessible.
errorProvides details about any errors encountered during the process, if applicable.
Job IdA unique identifier assigned to the job.
creditsThe amount of credits utilized for the process.
Remaining CreditsDisplays the balance of credits available in your account.
durationThe duration of time the process took to complete.

Profiles

To display the Profiles fields, you must enable Advanced Settings by clicking the toggle:
Advanced Settings
You can set additional options for the operation used in the PDF.co module by using Profiles. A profile is a string in JSON-like format containing predefined parameters.

Here’s an example of a Custom Profiles input:

{
    'DataEncryptionAlgorithm': 'AES128',
    'DataEncryptionKey': 'HelloThisKey1234',
    'DataEncryptionIV': 'TreloThisKey1234'
}
With this input, the PDF.co module will return the output in base64 format. You can find the list of available parameters for customizing profiles in the PDF.co operation documentation below:
You can use any regular API parameter from the API Reference within Make using the std_params feature in profiles. The std_params enables the definition of regular API parameters in a JSON format, See Standard Parameters for detailed documentation and examples.
ParameterTypeDefaultDescription
DataEncryptionAlgorithmstring-Controls the encryption algorithm used for data encryption. See User-Controlled Encryption for more information. The available algorithms are: AES128, AES192, AES256.
DataEncryptionKeystring-Controls the encryption key used for data encryption. See User-Controlled Encryption for more information.
DataEncryptionIVstring-Controls the encryption IV used for data encryption. See User-Controlled Encryption for more information.
DataDecryptionAlgorithmstring-Controls the decryption algorithm used for data decryption. See User-Controlled Encryption for more information. The available algorithms are: AES128, AES192, AES256.
DataDecryptionKeystring-Controls the decryption key used for data decryption. See User-Controlled Encryption for more information.
DataDecryptionIVstring-Controls the decryption IV used for data decryption. See User-Controlled Encryption for more information.