28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
(ducttape-color-mode #f)
)
(define (reset-ducttape-with-cmdline-list cmdline-list)
(reset-ducttape)
(command-line-arguments cmdline-list)
(process-command-line)
)
(define (direct-iputs-test)
(ducttape-color-mode #f)
(ierr "I'm an error")
(iwarn "I'm a warning")
|
|
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
(ducttape-color-mode #f)
)
(define (reset-ducttape-with-cmdline-list cmdline-list)
(reset-ducttape)
(command-line-arguments cmdline-list)
(ducttape-process-command-line)
)
(define (direct-iputs-test)
(ducttape-color-mode #f)
(ierr "I'm an error")
(iwarn "I'm a warning")
|
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
|
(test-misc)
(test-wwdate)
) ; end main()
(main)
(sendmail "brandon.j.barclay@intel.com" "6hello subject" "test body" )
(let* ((image-file "/nfs/site/home/bjbarcla/megatest-logo.png")
(cid "mtlogo")
(image-alist (list (cons image-file cid)))
(body (conc "Hello world<br /><img cid:"cid" alt=\"test image\"><br>bye!")))
(sendmail "brandon.j.barclay@intel.com" "7hello subject" body use_html: #t images-with-content-id-alist: image-alist)
(print "sent image mail"))
;(sendmail "bjbarcla" "2hello subject html" "test body<h1>hello</h1><i>italics</i>" use_html: #t)
;(sendmail "bb" "4hello attach subject html" "<h2>hmm</h2>" use_html: #t attach-files-list: '( "/Users/bb/Downloads/wdmycloud-manual-4779-705103.pdf" ) )
;(launch-repl)
(test-exit)
|
|
|
|
|
|
|
|
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
|
(test-misc)
(test-wwdate)
) ; end main()
(main)
(sendmail "brandon.j.barclay@intel.com" "6hello subject" "test body" )
;(let* ((image-file "/nfs/site/home/bjbarcla/megatest-logo.png")
; (cid "mtlogo")
; (image-alist (list (cons image-file cid)))
; (body (conc "Hello world<br /><img cid:"cid" alt=\"test image\"><br>bye!")))
; (sendmail "brandon.j.barclay@intel.com" "7hello subject" body use_html: #t images-with-content-id-alist: image-alist)
; (print "sent image mail"))
;(sendmail "bjbarcla" "2hello subject html" "test body<h1>hello</h1><i>italics</i>" use_html: #t)
;(sendmail "bb" "4hello attach subject html" "<h2>hmm</h2>" use_html: #t attach-files-list: '( "/Users/bb/Downloads/wdmycloud-manual-4779-705103.pdf" ) )
;(launch-repl)
(test-exit)
|