# cryptx/3.5.2/classes/EmailProcessingConfig.php

CryptX, version 3.5.2. 27 lines.

- Page: https://pluginprobe.com/plugins/cryptx/3.5.2/code/classes/EmailProcessingConfig.php
- Raw: https://pluginprobe.com/plugins/cryptx/3.5.2/raw/classes/EmailProcessingConfig.php
- Modified: 2025-07-29T11:41:56+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/cryptx/3.5.2/code/classes/EmailProcessingConfig.php#L10-L20`.

```php
<?php

namespace CryptX;

final class EmailProcessingConfig {
    public function __construct(
        private readonly string $content,
        private readonly bool $isShortcode = false,
        private readonly ?int $postId = null
    ) {}

    public function getContent(): string
    {
        return $this->content;
    }

    public function isShortcode(): bool
    {
        return $this->isShortcode;
    }

    public function getPostId(): ?int
    {
        return $this->postId;
    }
}

```
