Merge pull request #287 from astonbitecode/master

fix (transport): Sendmail transport: Fix to-list manipulation
This commit is contained in:
Alexis Mousset
2018-05-22 20:56:23 +02:00
committed by GitHub

View File

@@ -49,8 +49,8 @@ impl<'a> Transport<'a> for SendmailTransport {
Some(address) => address.to_string(),
None => "\"\"".to_string(),
},
&to_addresses.join(" "),
])
.args(&to_addresses)
.stdin(Stdio::piped())
.stdout(Stdio::piped())
.spawn()?;