Skip to main content

Messaging & Communication

Lido provides action formulas for sending emails, Slack messages, and SMS directly from your spreadsheet.


SENDGMAIL

Sends an email via a connected Gmail account.

Syntax:

=SENDGMAIL(credential, recipient, subject, body)
=SENDGMAIL(credential, recipient, subject, body, status_ref, cc, bcc, file_url, sender, tracking_pixel_ref, reply_to, signature_id, in_reply_to, attachment_files)

Parameters:

ParameterDescriptionRequired
credentialGmail credential IDYes
recipientEmail address(es) of the recipientYes
subjectEmail subject lineYes
bodyEmail body (supports HTML)Yes
status_refCell reference to write send statusNo
ccCC recipient(s)No
bccBCC recipient(s)No
file_urlURL of a file to attachNo
senderSender name/address overrideNo
tracking_pixel_refCell reference for open trackingNo
reply_toReply-to addressNo
signature_idEmail signature to useNo
in_reply_toMessage ID to reply to (for threading)No
attachment_filesAdditional files to attachNo

SENDOUTLOOK

Sends an email via a connected Outlook account. Parameters mirror SENDGMAIL (without sender).

Syntax:

=SENDOUTLOOK(credential, recipient, subject, body)
=SENDOUTLOOK(credential, recipient, subject, body, status_ref, cc, bcc, file_url, tracking_pixel_ref, reply_to, signature_id, attachment_files)

FORWARDOUTLOOK

Forwards an Outlook email message to another recipient.

Syntax:

=FORWARDOUTLOOK(credential, recipient, message_id)
=FORWARDOUTLOOK(credential, recipient, message_id, comment, status_ref)

Parameters:

ParameterDescriptionRequired
credentialOutlook credential IDYes
recipientEmail address to forward toYes
message_idID of the message to forwardYes
commentOptional comment to includeNo
status_refCell reference to write statusNo

MOVEOUTLOOKMESSAGE

Moves an Outlook message to a different folder.

Syntax:

=MOVEOUTLOOKMESSAGE(credential, message_id, folder_url)
=MOVEOUTLOOKMESSAGE(credential, message_id, folder_url, status_ref)

Parameters:

ParameterDescriptionRequired
credentialOutlook credential IDYes
message_idID of the message to moveYes
folder_urlDestination folder URLYes
status_refCell reference to write statusNo

SENDSLACK

Sends a message to a Slack channel.

Syntax:

=SENDSLACK(credential, channel, message)
=SENDSLACK(credential, channel, message, status_ref)

Parameters:

ParameterDescriptionRequired
credentialSlack credential IDYes
channelChannel name or IDYes
messageMessage textYes
status_refCell reference to write statusNo

ADDSLACKCHANNEL

Creates a new Slack channel.

Syntax:

=ADDSLACKCHANNEL(credential, channel_name)
=ADDSLACKCHANNEL(credential, channel_name, is_private, topic, members, status_ref)

Parameters:

ParameterDescriptionRequired
credentialSlack credential IDYes
channel_nameName for the new channelYes
is_privateWhether the channel is privateNo
topicChannel topicNo
membersMembers to inviteNo
status_refCell reference to write statusNo

SENDSMS

Sends an SMS message via Twilio.

Syntax:

=SENDSMS(credential, from, to, body)
=SENDSMS(credential, from, to, body, status_ref, in_reply_to)

Parameters:

ParameterDescriptionRequired
credentialTwilio credential IDYes
fromSender phone numberYes
toRecipient phone numberYes
bodyMessage textYes
status_refCell reference to write statusNo
in_reply_toMessage SID to reply toNo

SENDEMAIL

Sends an email using Lido's built-in email service (no credential required).

Syntax:

=SENDEMAIL(recipient, subject, body)
=SENDEMAIL(recipient, subject, body, file_url)

Parameters:

ParameterDescriptionRequired
recipientRecipient email addressYes
subjectEmail subject lineYes
bodyEmail bodyYes
file_urlURL of a file to attachNo