update
This commit is contained in:
parent
1f1ad49427
commit
6f050a029e
2496 changed files with 37609 additions and 3031 deletions
|
|
@ -1,6 +1,16 @@
|
|||
#lang racket
|
||||
(require net/head net/smtp)
|
||||
|
||||
;; using sendmail:
|
||||
(require net/sendmail)
|
||||
(send-mail-message
|
||||
"sender@somewhere.com" "Some Subject"
|
||||
'("recipient@elsewhere.com" "recipient2@elsewhere.com")
|
||||
'("cc@elsewhere.com")
|
||||
'("bcc@elsewhere.com")
|
||||
(list "Some lines of text" "go here."))
|
||||
|
||||
;; and using smtp (and adding more headers here):
|
||||
(require net/head net/smtp)
|
||||
(smtp-send-message
|
||||
"192.168.0.1"
|
||||
"Sender <sender@somewhere.com>"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue