@extends('admin/public/layout') @section('title')邮箱配置@endsection @section('content')

邮箱配置

(若关闭则不会有邮件通知)
(默认跟发送账号保持一致,例如tipask@qq.com) @if ($errors->has('mail_from_address'))

{{ $errors->first('mail_from_address') }}

@endif
(显示邮件名称部分,例如tipask) @if ($errors->has('mail_from_name'))

{{ $errors->first('mail_from_name') }}

@endif
(邮件发送方式)
(例如smtp.qq.com) @if ($errors->has('mail_host'))

{{ $errors->first('mail_host') }}

@endif
(设置 SMTP 服务器的端口,默认为 25) @if ($errors->has('mail_port'))

{{ $errors->first('mail_port') }}

@endif
(请根据邮件实际情况进行配置)
     
(例如tipask@qq.com) @if ($errors->has('mail_username'))

{{ $errors->first('mail_username') }}

@endif
(根据实际情况填写你邮箱的密码或第三方客户端授权码) @if ($errors->has('mail_password'))

{{ $errors->first('mail_password') }}

@endif
(设置SendMail命令配置) @if ($errors->has('mail_sendmail'))

{{ $errors->first('mail_sendmail') }}

@endif
@endsection @section('script') @endsection