send-mail-with-binary-attachments
Service icon

Send Mail with Binary Attachments

Stable version 1.0.5 (Compatible with OutSystems 11)
Other versions available for 10
Uploaded on 26 September 2023 by 
4.4
 (7 ratings)
send-mail-with-binary-attachments

Send Mail with Binary Attachments

Documentation
1.0.5

To learn how to use this component, I recommend checking out the demo app. In order to specify the email account settings for sending emails, you can define them in the Site Properties located within the SendMailWithBinaryAttachments_IS module via the Service Center.

SMTPHost: Define the Email Server. Ex.: smtp.google.com, outlook.office365.com...

SMTPPassword: Email account Password

SMTPPort: SMTP port, usually 587

SMTPSSL: Boolean value to define If the server requires cryptography, usually True

SMTPUser: Email account that will be used to send the emails (username@provider.com)


The next step is to add SendMailWithBinaryAttachments_IS module as a dependency in your application. This will allow you to use the MailSend action to send emails. 

You will need to provide input these parameters:

mailAddressList: Provide a list of all the recipients that will receive the email. 

fileAttachmentList: Provide a list of all the files that have been attached. 

Subject: Provide the email subject

Body: Provide the email content

IsBodyHtml: Determine whether the email content is in HTML format (true) or plain text (false).