Reputation: 49
I want to add a Sieve filter rule that add message to body.
It worked to add a message to the subject.
if allof(not address :domain :is ["from"] ["example.com""], not header :contains "Subject" ["[TEXT]"])
{
if header :matches "Subject" "*"
{
set "subject" "${1}";
deleteheader "Subject";
addheader :last "Subject" "[TEXT] ${1}";
}
}
I cannot find out how to add a message to the body. Can anyone help me? Please. Thanks.
Upvotes: 1
Views: 542