WhoAmI
WhoAmI

Reputation: 49

Sieve add message to body

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

Answers (0)

Related Questions