blob: 7c0790526ee18a33e58911b733937a7890a79ecf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $message_body in multiple SMTP messages
exim -bs
mail from:<>
rcpt to:<x@y>
data
This is the FIRST message body.
.
mail from:<>
rcpt to:<x@y>
data
This is the SECOND message body.
.
quit
****
|