metabytes-sro/epost-api
Composer 安装命令:
composer require metabytes-sro/epost-api
包简介
E-POSTBUSINESS API PHP integration
README 文档
README
PHP integration for the E-POSTBUSINESS API for electronic submission of documents that are subsequently sent as physical letters.
Install
composer require metabytes-sro/epost-api
Upgrading
See UPGRADE.md for migration instructions when upgrading between versions.
Requirements
- PHP ^8.1
- guzzlehttp/guzzle ^7.0.1
Usage
Authentication
Obtain an access token via the OAuth2 Provider or the built-in Login:
use MetabytesSRO\EPost\Api\AccessToken; use MetabytesSRO\EPost\Api\Letter; $token = new AccessToken($vendorID, $ekp, $secret, $password);
Sending a letter
use MetabytesSRO\EPost\Api\Letter; use MetabytesSRO\EPost\Api\Metadata\Envelope; use MetabytesSRO\EPost\Api\Metadata\Envelope\Recipient; use MetabytesSRO\EPost\Api\Metadata\DeliveryOptions; $letter = new Letter(); $envelope = new Envelope(); $recipient = new Recipient(); $recipient ->setAddressLine('Max Mustermann AG', 0) // addressLine1 ->setAddressLine('Musterstrasse 99', 1) // addressLine2 ->setZipCode('12345') ->setCity('Bonn'); $envelope->setRecipient($recipient); $letter ->setAccessToken($token) ->setEnvelope($envelope) ->setAttachment('/path/to/document.pdf') ->setTestEnvironment(true); // Optional: cover letter (PDF path) $letter->setCoverLetter('/path/to/cover.pdf'); // Optional: test mode - receive PDF at email instead of physical send $letter->setTestEmail('test@example.com'); try { $letter->send(); $letterId = $letter->getLetterId(); } catch (MetabytesSRO\EPost\Api\Exception\ErrorException $e) { $error = $e->getError(); // $error->getCode(), $error->getDescription() }
Einschreiben (registered mail) with return receipt
When using "Einschreiben Rückschein" or "Einschreiben eigenhändig Rückschein", you must provide the return address where the handwritten delivery confirmation is sent:
use MetabytesSRO\EPost\Api\Metadata\DeliveryOptions; use MetabytesSRO\EPost\Api\Metadata\RegisteredLetterReturnAddress; $deliveryOptions = new DeliveryOptions(); $deliveryOptions ->setRegisteredWithReturnReceipt() // or setRegisteredAddresseeOnlyWithReturnReceipt() ->setColorColored(); $returnAddress = new RegisteredLetterReturnAddress(); $returnAddress ->setAddressLine1('My Company GmbH') ->setZipCode('53115') ->setCity('Bonn'); $deliveryOptions->setRegisteredLetterReturnAddress($returnAddress); $letter->setDeliveryOptions($deliveryOptions);
Batch sending
Send multiple letters in one API request:
$letters = [$letter1, $letter2, $letter3]; $letter->setAccessToken($token); $results = $letter->sendBatch($letters); foreach ($results as $result) { $letterId = $result->getLetterId(); }
Status queries
// Single letter $status = $letter->getLetterStatus($letterId); // Multiple by IDs $statuses = $letter->getMultipleLetterStatuses([123, 456], $onlyIssues = false); // By date range $statuses = $letter->getLetterStatusByDateRange('2024-01-01', '2024-01-31'); // Open letters (status 1–3, not yet sent) $statuses = $letter->getOpenLetters(); // Einschreiben (registered letters) by date range $statuses = $letter->getRegisteredLetterStatus('2024-01-01', '2024-01-31', $onlyOpen = false); // Einschreiben tracking status (resolve code to description) $status = $letter->getLetterStatus($letterId); $trackCode = $status->getRegisteredLetterStatus(); // e.g. "DELIVERED", "IN_DELIVERY" $description = \MetabytesSRO\EPost\Api\TrackStatusCodes::getDescription($trackCode); // German description $isFinal = \MetabytesSRO\EPost\Api\TrackStatusCodes::isFinal($trackCode); // true if delivery complete // Search by custom1 field $statuses = $letter->getLetterStatusByCustom1('RE-000123'); // By batch ID $statuses = $letter->getLetterStatusByBatch(12345);
UploadManagement plugin (queued letters)
For letters submitted with the UploadManagement plugin:
// Cancel queued letters $results = $letter->cancelQueued([74567567, 65765678]); // Release (expedite) queued letters $results = $letter->releaseQueued([74567567, 65765678]);
PremiumAdress feedback
$feedback = $letter->getPremiumAdressFeedback('2024-01-01', '2024-01-31');
Price estimation
The E-POSTBUSINESS API does not provide a pricing endpoint for Letter (hybrid mail). Use the built-in calculator with official price lists (valid from 01.01.2025):
use MetabytesSRO\EPost\Api\Pricing\LetterPriceCalculator; use MetabytesSRO\EPost\Api\Pricing\PriceConfig; // Default prices from Deutsche Post (Tarif Basis) $calculator = LetterPriceCalculator::fromEnv(); // Single letter: weight (g), pages, color, duplex, international $price = $calculator->calculate(20, 1, false, false, false); // 0.80 € national standard // Batch $total = $calculator->calculateBatch(100, 50, 4, true, false, false);
Environment variables (optional):
| Variable | Description |
|---|---|
EPOST_TARIFF |
basis (default) or 250plus |
EPOST_PRICES_JSON |
JSON object to override default prices (e.g. negotiated rates) |
Example .env:
EPOST_TARIFF=250plus
# EPOST_PRICES_JSON={"national":{"basis":{"standard":{"sw_simplex":0.75}}}}
Price sources: National, International
API reference
See the E-POSTBUSINESS API Swagger documentation for full details.
Supporting the project
If this package is useful to you and you would like to support further development, we welcome donations. Please get in touch via metabytes.eu or info@metabytes.eu. We are also open to feature requests.
License
LGPL-3.0+
Contributing
Please follow the Symfony Coding Standards.
metabytes-sro/epost-api 适用场景与选型建议
metabytes-sro/epost-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 13.86k 次下载、GitHub Stars 达 4, 最近一次更新时间为 2020 年 05 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 metabytes-sro/epost-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 metabytes-sro/epost-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 13.86k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0-or-later
- 更新时间: 2020-05-01