[plt-scheme] sending smtp tls mail

From: Matt Jadud (jadudm at gmail.com)
Date: Tue Nov 13 19:06:03 EST 2007

> for instance
>  ("spdegabrielle at gmail.com") ; to-list-of-strings
> give this error : > procedure application: expected procedure, given:
> "spdegabrielle at gmail.com" (no arguments)

Hi Stephen,

This may be a typo on your part, but

("Oopsies")

is function application, but

(list "Oopsies")

or

'("Oopsies")

represent lists of one element containing the string "Oopsies".

Does that help? Otherwise, you're trying to apply the function
"Oopsies", which... well, is a string, not a function.

Cheers,
Matt


Posted on the users mailing list.