The value of the EmailMessage.text field in emails produced by this app is malformed in two ways:
It always ends with a "/r/n./r/n" sequence, regardless of what text the user enters.
The lines in the rest of the message are dot-escaped --- a practice specific to SMTP that should not be carried over to our Cap'n Proto email interface.
The value of the
EmailMessage.text
field in emails produced by this app is malformed in two ways:"/r/n./r/n"
sequence, regardless of what text the user enters.See https://github.com/sandstorm-io/sandstorm/issues/1148 and https://github.com/sandstorm-io/sandstorm/pull/1149 .