Re: [racket-users] Setting return address in Racket's sendmail

2016-03-19 Thread Matthias Felleisen
This has gotten me rejection replies: (smtp-send-message (dns-get-address (dns-find-nameserver) "smtp.gmail.com") "matth...@ccs.neu.edu" actual-send-to-addresses addresses-put-into-header file #:port-no 465 ; for gmail don't include the @gmail.com #:auth-user

Re: [racket-users] Setting return address in Racket's sendmail

2016-03-19 Thread George Neuner
On 3/16/2016 10:29 PM, Matthias Felleisen wrote: This has gotten me rejection replies: (smtp-send-message (dns-get-address (dns-find-nameserver) "smtp.gmail.com ") "matth...@ccs.neu.edu " actual-send-to-addresses

Re: [racket-users] Setting return address in Racket's sendmail

2016-03-19 Thread Marc Kaufmann
Thanks, the smtp works, and it seems that sendmail actually does work even the way I used it, but the email I used landed in spam, because google realized it hadn't been sent from that account (since I was bypassing it, unlike the smtp solution, which logs into the account first). Matthew,

[racket-users] Setting return address in Racket's sendmail

2016-03-19 Thread Marc Kaufmann
Hi all, I am using send-mail-message as follows: #lang racket (require net/sendmail) (send-mail-message #f "Test sendmail" '("fake-em...@marcs-server.com") '() '() '("Testing Racket sendmail.")) It works as expected when I send something to myself, since sendmail goes and gets the email