Merge branch 'send-email-payment-proof' of gitlab.com:CIEFWorldwideSdnBhd/exchange-2.0 into development

This commit is contained in:
edmondlang
2023-06-21 15:19:43 +08:00
2 changed files with 3 additions and 4 deletions
@@ -46,7 +46,7 @@ class PaymentProofUploadedEmail extends AbstractEmail
return (new MailMessage)
->subject('Transfer Completed (REF: ' . $this->booking->marking . ')')
->attach($attachedFile) // todo-new: add attachement
// ->attach($attachedFile) // todo-new: add attachement
->view('emails.accounts.payment_proof_email', ['user' => $this->user, 'booking' => $this->booking]);
}
@@ -3,10 +3,9 @@
@section('content')
<h4 style="font-size: 1em;">Dear {{ucwords($user->name)}},</h4>
<p style="font-size: 0.9em">Thank you for using CIEF Exchange service!</p>
<p style="margin-top: 30px; font-size: 0.8em">We have completed your RMB transfer transaction for the ref. no {{$booking->marking}}. The RMB bank slip has been attached to this email. If you would like to view the transaction, please click on the following link:</p>
<p style="margin-top: 30px; font-size: 0.8em">We have completed your transfer transaction for the ref. no {{$booking->marking}}. If you would like to view the transaction, please click on the following link:</p>
<div style="margin-top: 20px;">
<a href="{{route('booking.details', $booking->marking)}}"><button class="btn all-caps bg-primary no-border text-white pointer" style="font-size: 0.8em" >View</button></a>
</div>
<!-- todo-new: check if this is needed, confirm on customer support contact information -->
<!-- <div class="all-caps hint-text" style="margin-top: 20px;"><small style="font-size: 0.7em">If you have questions, contact us at [customer support contact information]. We truly appreciate your trust in our services and look forward to serving you in the future.</small></div> -->
<div class="all-caps hint-text" style="margin-top: 20px;"><small style="font-size: 0.7em">If you have questions, contact us at <a href="https://go.crisp.chat/chat/embed/?website_id=665dcd41-1edf-4451-8cb9-f1cf9ed35e15">here</a>. We truly appreciate your trust in our services and look forward to serving you in the future.</small></div>
@endsection