Mailcommon

filteractionreplyto.h
1/*
2 * SPDX-FileCopyrightText: 1996-1998 Stefan Taferner <taferner@kde.org>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 *
6 */
7
8#pragma once
9
10#include "filteractionwithaddress.h"
11
12namespace MailCommon
13{
14//=============================================================================
15// FilterActionReplyTo - set Reply-To to
16// Set the Reply-to header in a message
17//=============================================================================
18class FilterActionReplyTo : public FilterActionWithAddress
19{
21public:
22 explicit FilterActionReplyTo(QObject *parent = nullptr);
23 [[nodiscard]] ReturnCode process(ItemContext &context, bool applyOnOutbound) const override;
24 [[nodiscard]] SearchRule::RequiredPart requiredPart() const override;
25 static FilterAction *newAction();
26 [[nodiscard]] QString informationAboutNotValidAction() const override;
27};
28}
FilterAction(const QString &name, const QString &label, QObject *parent=nullptr)
Creates a new filter action.
ReturnCode
Describes the possible return codes of filter processing:
RequiredPart
Possible required parts.
Definition searchrule.h:68
The filter dialog.
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:00 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.