Re: [racket-users] Want to send email with net/smtp. An error to fix.

2018-01-19 Thread Neil Van Dyke
James Platt wrote on 01/19/2018 12:27 PM: in a properly configured (in my opinion) email client, a lot of HTML features will be disabled for security reasons, including such things as cookies, javascript and remote images... Agreed to all of that, and you also want to disable "non-remote" ima

Re: [racket-users] Want to send email with net/smtp. An error to fix.

2018-01-19 Thread James Platt
> > (And is the html thing really that big a deal?) > > > It's likely that part of the reason they were caught in a spam trap was > because they were HTML and formatted with both very large font and half a > dozen different colors. Also, as George points out, HTML formatting gets > fouled up

Re: [racket-users] Want to send email with net/smtp. An error to fix.

2018-01-19 Thread David Storrs
On Fri, Jan 19, 2018 at 9:45 AM, Robby Findler wrote: > On Fri, Jan 19, 2018 at 8:30 AM, David Storrs > wrote: > > #2: Please stop spamming the list with slightly divergent items on a > given > > subject. Keep it confined to one subject line so that Gmail and the > Google > > Group will thread

[racket-users] some issues about in-permutations

2018-01-19 Thread Jos Koot
Hi, 1: In module racket/collects/list.rkt the definition of procedure in-permutations contains the line: (define cur (reverse l)) Why the reversal? Why not: (define cur l)? With (define cur l) in-permutations returns the permutations in the same order as procedure permutations, starting with

Re: [racket-users] Want to send email with net/smtp. An error to fix.

2018-01-19 Thread 'John Clements' via Racket Users
I see a number of very minor issues in your code: 1) It looks like you have wrapped the keyword arguments in square brackets. These aren’t necessary. They’re used in the documentation to indicate optional elements. 2) It’s worth noting that these arguments are optional, so you can leave out,

[racket-users] Re: Want to send email with net/smtp. An error to fix.

2018-01-19 Thread George Neuner
On Fri, 19 Jan 2018 08:45:22 -0600, Robby Findler wrote: >On Fri, Jan 19, 2018 at 8:30 AM, David Storrs wrote: >> #2: Please stop spamming the list with slightly divergent items on a given >> subject. Keep it confined to one subject line so that Gmail and the Google >> Group will thread the dis

Re: [racket-users] Want to send email with net/smtp. An error to fix.

2018-01-19 Thread Robby Findler
On Fri, Jan 19, 2018 at 8:30 AM, David Storrs wrote: > #2: Please stop spamming the list with slightly divergent items on a given > subject. Keep it confined to one subject line so that Gmail and the Google > Group will thread the discussion properly. That way everyone can benefit > from it in t

Re: [racket-users] Want to send email with net/smtp. An error to fix.

2018-01-19 Thread David Storrs
Hi MHE, Quick requests: #1: Could you please not send HTML-formatted emails? They're ugly and distracting. Keep it to plain text unless it's essential. #2: Please stop spamming the list with slightly divergent items on a given subject. Keep it confined to one subject line so that Gmail and t

[racket-users] Want to send a email with net/smtp. Little errors to fix.

2018-01-19 Thread MHE
#lang racket *(require net/smtp)(smtp-send-message "smtpATserver.de" "senderATmailadress.de" "receiverATmailadress.de""NEW MESSAGE SMTP !"

[racket-users] Try to run a smtp-sender with net/smtp. Little errors to fix.

2018-01-19 Thread MHE
#lang racket ( *require net/smtp)(smtp-send-message "s...@server.de" "sen...@mailadress.de" "recei...@mailadress.de" "NEW MESSAGE SMTP !"

[racket-users] I want to run a email sender with the module net/smtp. Some errors needed to be fixed !

2018-01-19 Thread MHE
*# lang racket* *(require net/smtp)(smtp-send-message "s...@server.de" "sen...@mailadress.de" "recei...@mailadress.de" "NEW MESSAGE SMTP !"

[racket-users] Want to send email with net/smtp. An error to fix.

2018-01-19 Thread MHE
*Hello Rackets,(require net/smtp)(smtp-send-message "smtpATserver.de" "senderATmailadress.de" "receiverATmailadress.de" "NEW MESSAGE SMTP !"

[racket-users] Want to Run this smtp Sender with net/smtp. Something went wrong. What can it be ?

2018-01-19 Thread MHE
#lang racket (require net/smtp) (smtp-send-message "s...@server.de" "sen...@mailadress.de" "recei...@mailadress.de" "NEW MESSAGE SMTP !" "HI , THIS IS THE MESSAGE !" [#:port-no 25

[racket-users] Want to RUN this Smtp Mailer with net/smtp module. little errors. need help.

2018-01-19 Thread MHE
#lang racket (require net/smtp) (smtp-send-message "s...@server.de" "sen...@mailadress.de" "recei...@mailadress.de" "NEW MESSAGE SMTP !" "HI , THIS IS THE MESSAGE !" [#:port-no 25

Re: [racket-users] net/smtp. want to send a e-mail.

2018-01-19 Thread MHE
Thank you Philip , i will try the code. Am Freitag, 19. Januar 2018 11:37:46 UTC+1 schrieb Philip McGrath: > > This is a working example (except, of course, that it does not include an > actual email account or password, and, for Gmail in particular, you need to > take extra steps to enable pl

Re: [racket-users] net/smtp. want to send a e-mail.

2018-01-19 Thread Philip McGrath
This is a working example (except, of course, that it does not include an actual email account or password, and, for Gmail in particular, you need to take extra steps to enable plain SMTP): #lang racket (require net/smtp net/head openssl) (let ([to "y...@example.com"] [fro

[racket-users] Hi there !

2018-01-19 Thread MHE
Hello racket programmers ! -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more options, visit https://groups.goog