소스 검색

feat: 增加邮件模块

igb 3 달 전
부모
커밋
0400d94689
4개의 변경된 파일80개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      .env.dev
  2. 42 0
      app/Services/MailService.php
  3. 11 0
      config/mail_recipients.php
  4. 19 0
      resources/views/emails/inquiry.blade.php

+ 8 - 0
.env.dev

@@ -78,3 +78,11 @@ OSS_ENDPOINT=oss-cn-hongkong.aliyuncs.com
 #OSS_INTERNAL=oss-cn-hongkong-internal.aliyuncs.com
 #加速域名,上线时开
 #OSS_DOMAIN=mietubl-dev.oss-accelerate.aliyuncs.com
+
+
+MAIL_TO_NAME=""
+MAIL_TO_ADDRESS=""
+
+MAIL_CC_NAME=""
+MAIL_CC_ADDRESS=""
+

+ 42 - 0
app/Services/MailService.php

@@ -0,0 +1,42 @@
+<?php
+namespace App\Services;
+
+use Illuminate\Support\Facades\Mail;
+use App\Mail\InquiryMail;
+
+class MailService
+{
+    /**
+     * 发送询盘邮件(静态方法)
+     *
+     * @param array $inquiryData 询盘数据
+     * @return bool 返回是否发送成功
+     */
+    public static function sendInquiryMail(array $inquiryData)
+    {
+        try {
+            $toAddress = config('mail_recipients.to.address');
+            $ccAddress = config('mail_recipients.cc.address');
+
+            if (empty($toAddress)) {
+                // 没有收件人地址时,记录日志并返回 false
+                logger()->warning('邮件未发送:缺少收件人地址');
+                return false;
+            }
+
+            $mail = Mail::to($toAddress);
+
+            if (!empty($ccAddress)) {
+                $mail->cc($ccAddress);
+            }
+
+            $mail->send(new InquiryMail($inquiryData));
+
+            return true; // 成功发送邮件
+        } catch (\Exception $e) {
+            // 处理邮件发送失败的异常
+            logger()->error('邮件发送失败: ' . $e->getMessage());
+            return false;
+        }
+    }
+}

+ 11 - 0
config/mail_recipients.php

@@ -0,0 +1,11 @@
+<?php
+return [
+    'to' => [
+        'name' => env('MAIL_TO_NAME', ''),
+        'address' => env('MAIL_TO_ADDRESS', ''),
+    ],
+    'cc' => [
+        'name' => env('MAIL_CC_NAME', ''),
+        'address' => env('MAIL_CC_ADDRESS', ''),
+    ],
+];

+ 19 - 0
resources/views/emails/inquiry.blade.php

@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html lang="zh">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>新的询盘邮件</title>
+</head>
+<body>
+<h1>新的询盘邮件</h1>
+<p><strong>订单号:</strong>{{ $order_number }}</p>
+<p><strong>客户名称:</strong>{{ $customer_name }}</p>
+<p><strong>邮箱:</strong>{{ $email }}</p>
+<p><strong>咨询产品:</strong>{{ $consulting_products }}</p>
+<p><strong>是否有货代:</strong>{{ $freight_forwarder }}</p>
+<p><strong>业务模式:</strong>{{ $business_model }}</p>
+<p><strong>内容:</strong>{{ $content }}</p>
+<p><strong>来源链接:</strong>{{ $referer_url }}</p>
+</body>
+</html>