12,341
edits
This is the support site for Andrews & Arnold Ltd, a UK Internet provider. Information on these pages is generally for our customers but may be useful to others, enjoy!
(Created page with "Send a notification email to another mailbox when the mailbox gets an email: thumbnail This sets a variable of the subject, and then send...") |
mNo edit summary |
||
(13 intermediate revisions by the same user not shown) | |||
Send a notification email to another mailbox when the mailbox gets an email:
[[File:Sieve-roundcube-notify.png|
If you can edit the sieve filter manually, then you can also get the Sender and add that to the subject line:
<syntaxhighlight lang="python">
# rule:[notify]
if header :matches "Subject" "*"
{
set "subject" "${1}";
}
if header :matches "From" "*"
{
set "from" "${1}";
}
notify :importance "2" :message "[Notification] ${from}: ${subject}" "mailto:someone@example.com";
</syntaxhighlight>
This sets a variable of the subject, and then sends an email to another mailbox using the subject line.
[[Category:Sieve]]
|
edits