trimis/trimis-php
Composer 安装命令:
composer require trimis/trimis-php
包简介
Official Trimis SDK for PHP - Send emails, push notifications, and chat messages
README 文档
README
Official PHP SDK for Trimis.ro - Send emails, push notifications, and chat messages.
Installation
composer require trimis/trimis-php
Quick Start
<?php require 'vendor/autoload.php'; use Trimis\TrimisClient; $client = new TrimisClient('YOUR_API_KEY'); // Send an email $result = $client->sendEmail( 'recipient@example.com', 'sender@yourdomain.com', 'Hello!', '<h1>Hello World</h1>', 'Hello World' ); if ($result['success']) { echo "Email sent! " . json_encode($result['data']); } else { echo "Error: " . $result['error']; }
Email API
// Send email $result = $client->sendEmail( 'user@example.com', 'noreply@yourdomain.com', 'Welcome!', '<h1>Welcome</h1>', 'Welcome', true, // track opens true // track clicks );
Notification Hub API
// Send notification with template $result = $client->sendNotification( 'user@example.com', 'noreply@yourdomain.com', 'welcome_email', [ 'name' => 'John Doe', 'activation_link' => 'https://app.com/activate?token=abc123' ] ); // Get notification status $notification = $client->getNotification('notif_123');
Push Notifications API
// Get VAPID key $vapid = $client->getVapidKey(); // Subscribe user $client->subscribePush( 'user123', 'web', [ 'subscription' => [ 'endpoint' => 'https://fcm.googleapis.com/...', 'keys' => [ 'p256dh' => '...', 'auth' => '...' ] ] ] ); // Send push notification $client->sendPush( ['user123', 'user456'], 'New Message', 'You have a new message', 'https://app.com/messages' );
Chat API
// Create conversation $conversation = $client->createConversation( 'direct', [ ['user_id' => 'user1', 'name' => 'Alice'], ['user_id' => 'user2', 'name' => 'Bob'] ] ); // Send message $client->sendMessage( $conversation['data']['conversation_id'], 'user1', 'Hello!' ); // Get messages $messages = $client->getMessages($conversation['data']['conversation_id']); // Mark as read $client->markMessageRead('msg_123', 'user2');
Laravel Integration
// In your service provider or controller use Trimis\TrimisClient; $client = new TrimisClient(config('services.trimis.api_key')); $client->sendEmail(...);
WordPress Integration
// In functions.php or as a plugin use Trimis\TrimisClient; $client = new TrimisClient(get_option('trimis_api_key')); $client->sendEmail(...);
Error Handling
$result = $client->sendEmail(...); if (!$result['success']) { echo "Error: " . $result['error']; echo "Status: " . ($result['status'] ?? 'N/A'); }
License
MIT
Links
trimis/trimis-php 适用场景与选型建议
trimis/trimis-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 02 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 trimis/trimis-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 trimis/trimis-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 20
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-02-05