🍲dfcv🏰dd⋉(● ∸ ●)⋊@% PNG %k25u25%fgd5n! PNG %k25u25%fgd5n!SupportMailManager.php000064400000002107152427531050011033 0ustar00array = $array; } /** * Build the message. * * @return $this */ public function build() { // dd($array); return $this->view($this->array['view']) ->from($this->array['from'], env('MAIL_FROM_NAME')) ->subject($this->array['subject']) ->with([ 'content' => $this->array['content'], 'link' => $this->array['link'], 'sender' => $this->array['sender'], 'details' => $this->array['details'] ]); } } AuctionBidMailManager.php000064400000001660152427531050011403 0ustar00array = $array; } /** * Build the message. * * @return $this */ public function build() { return $this->view('emails.auction_bid') ->from($this->array['from'], env('MAIL_FROM_NAME')) ->subject($this->array['subject']) ->with([ 'content' => $this->array['content'], 'link' => $this->array['link'], ]); } } MailManager.php000064400000001465152427531050007444 0ustar00array = $array; } /** * Build the message. * * @return $this */ public function build() { return $this->view('emails.index') ->from(env('MAIL_FROM_ADDRESS'), env('MAIL_FROM_NAME')) ->subject($this->array['subject']) ->with(['content' => $this->array['content']]); } } EmailManager.php000064400000001363152427531050007606 0ustar00array = $array; } /** * Build the message. * * @return $this */ public function build() { return $this->view($this->array['view']) ->from($this->array['from'], env('MAIL_FROM_NAME')) ->subject($this->array['subject']); } } InvoiceEmailManager.php000064400000001535152427531050011124 0ustar00array = $array; } /** * Build the message. * * @return $this */ public function build() { return $this->view($this->array['view']) ->from(env('MAIL_FROM_ADDRESS'), env('MAIL_FROM_NAME')) ->subject($this->array['subject']) ->with([ 'order' => $this->array['order'] ]); } } ConversationMailManager.php000064400000002056152427531050012034 0ustar00array = $array; } /** * Build the message. * * @return $this */ public function build() { return $this->view('emails.conversation') ->from($this->array['from'], env('MAIL_FROM_NAME')) ->subject($this->array['subject']) ->with([ 'content' => $this->array['content'], 'link' => $this->array['link'], 'sender' => $this->array['sender'], 'details' => $this->array['details'] ]); } } ContactMailManager.php000064400000001755152427531050010762 0ustar00array = $array; } /** * Build the message. * * @return $this */ public function build() { return $this->view('emails.contact') ->from($this->array['from'], env('MAIL_FROM_NAME')) ->subject($this->array['subject']) ->with([ 'name' => $this->array['name'], 'email' => $this->array['email'], 'phone' => $this->array['phone'], 'content' => $this->array['content'] ]); } } GuestAccountOpeningMailManager.php000064400000001706152427531050013307 0ustar00array = $array; } /** * Build the message. * * @return $this */ public function build() { return $this->view('emails.guest_account_opening') ->from($this->array['from'], env('MAIL_FROM_NAME')) ->subject($this->array['subject']) ->with([ 'email' => $this->array['email'], 'password' => $this->array['password'] ]); } } SecondEmailVerifyMailManager.php000064400000001412152427531050012725 0ustar00array = $array; } /** * Build the message. * * @return $this */ public function build() { return $this->view('emails.verification') ->from($this->array['from'], env('MAIL_FROM_NAME')) ->subject($this->array['subject']); } }