Status: New
Owner: ----
Labels: Type-Defect Priority-Medium GLASS-Server Version-GLASS0.231
New issue 248 by
[hidden email]:
GRGemStonePlatform>>seasideDeliverEmailMessage is broken
http://code.google.com/p/glassdb/issues/detail?id=248Sending of emails is broken because
GRGemStonePlatform>>seasideDeliverEmailMessage passes the 'to' email
addresses to GemStone's SendMail as an array. Instead, it expects a string.
The fix is easy. Just replace the appropriate lines in
GRGemStonePlatform>>seasideDeliverEmailMessage (see below)
"deliver the mail"
client
mailhostName: self seasideSmtpServer;
smtpPort: self seasideSmtpPort;
from: aWAEmailMessage from address greaseString;
to: (String streamContents:[:str |
aWAEmailMessage recipientsAddresses do:[:addr | str nextPutAll: addr
greaseString] separatedBy: [str nextPut:$;]]);
text: aWAEmailMessage plainMessage.
client send.