mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
39 lines
623 B
PHP
39 lines
623 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Xentral\Components\MailClient\Data;
|
|
|
|
interface MailAttachmentInterface
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getFileName(): string;
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getContent(): string;
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getContentType(): string;
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getTransferEncoding(): string;
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isInlineAttachment(): bool;
|
|
|
|
/**
|
|
* @return string|null
|
|
*/
|
|
public function getCid(): ?string;
|
|
}
|