Files
sam-api/app/Models/Tenants/TenantMailConfig.php
김보곤 918ae0ebc1 feat: [email] 테넌트 메일 설정 마이그레이션 및 모델 추가
- tenant_mail_configs 테이블 생성 (SMTP 설정, 브랜딩, 연결 테스트 결과)
- mail_logs 테이블 생성 (발송 이력 추적)
- TenantMailConfig, MailLog 모델 추가 (options JSON 정책 준수)
2026-03-12 07:42:06 +09:00

104 lines
2.3 KiB
PHP

<?php
namespace App\Models\Tenants;
use App\Traits\Auditable;
use App\Traits\BelongsToTenant;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class TenantMailConfig extends Model
{
use Auditable, BelongsToTenant, SoftDeletes;
protected $fillable = [
'tenant_id',
'provider',
'from_address',
'from_name',
'reply_to',
'is_verified',
'daily_limit',
'is_active',
'options',
'created_by',
'updated_by',
'deleted_by',
];
protected $casts = [
'is_verified' => 'boolean',
'daily_limit' => 'integer',
'is_active' => 'boolean',
'options' => 'array',
];
// Options 키 상수
public const OPTION_SMTP = 'smtp';
public const OPTION_PRESET = 'preset';
public const OPTION_BRANDING = 'branding';
public const OPTION_CONNECTION_TEST = 'connection_test';
public function tenant(): BelongsTo
{
return $this->belongsTo(Tenant::class);
}
public function getOption(string $key, mixed $default = null): mixed
{
return data_get($this->options, $key, $default);
}
public function setOption(string $key, mixed $value): static
{
$options = $this->options ?? [];
data_set($options, $key, $value);
$this->options = $options;
return $this;
}
public function getSmtpHost(): ?string
{
return $this->getOption('smtp.host');
}
public function getSmtpPort(): int
{
return (int) $this->getOption('smtp.port', 587);
}
public function getSmtpEncryption(): string
{
return $this->getOption('smtp.encryption', 'tls');
}
public function getSmtpUsername(): ?string
{
return $this->getOption('smtp.username');
}
public function getSmtpPassword(): ?string
{
$encrypted = $this->getOption('smtp.password');
if (! $encrypted) {
return null;
}
try {
return decrypt($encrypted);
} catch (\Exception $e) {
return null;
}
}
public function getPreset(): ?string
{
return $this->getOption('preset');
}
}