Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
33
Task/Send-email/Lasso/send-email.lasso
Normal file
33
Task/Send-email/Lasso/send-email.lasso
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
// with a lot of unneeded params.
|
||||
// sends plain text and html in same email
|
||||
// simple usage is below
|
||||
email_send(
|
||||
-host = 'mail.example.com',
|
||||
-port = 25,
|
||||
-timeout = 100,
|
||||
-username = 'user.name',
|
||||
-password = 'secure_password',
|
||||
-priority = 'immediate',
|
||||
-to = 'joe@average.com',
|
||||
-cc = 'jane@average.com',
|
||||
-bcc = 'me@too.com',
|
||||
-from = 'lasso@example.com',
|
||||
-replyto = 'lassorocks@example.com',
|
||||
-sender = 'lasso@example.com',
|
||||
-subject = 'Lasso is awesome',
|
||||
-body = 'Lasso is awesome, you should try it!',
|
||||
-html = '<p>Lasso is <b>awesome</b>, you should try it!</p>',
|
||||
-attachments = '/path/to/myFile.txt'
|
||||
)
|
||||
|
||||
// simple usage
|
||||
// sends plan text email
|
||||
email_send(
|
||||
-host = 'mail.example.com',
|
||||
-username = 'user.name',
|
||||
-password = 'secure_password',
|
||||
-to = 'joe@average.com',
|
||||
-from = 'lasso@example.com',
|
||||
-subject = 'Lasso is awesome',
|
||||
-body = 'Lasso is awesome, you should try it!'
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue