tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
14
Task/Send-email/Racket/send-email.rkt
Normal file
14
Task/Send-email/Racket/send-email.rkt
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#lang racket
|
||||
(require net/head net/smtp)
|
||||
|
||||
(smtp-send-message
|
||||
"192.168.0.1"
|
||||
"Sender <sender@somewhere.com>"
|
||||
'("Recipient <recipient@elsewhere.com>")
|
||||
(standard-message-header
|
||||
"Sender <sender@somewhere.com>"
|
||||
'("Recipient <recipient@elsewhere.com>")
|
||||
'() ; CC
|
||||
'() ; BCC
|
||||
"Subject")
|
||||
'("Hello World!"))
|
||||
Loading…
Add table
Add a link
Reference in a new issue