Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public function build()
  2. {
  3. $e_nis = $this->ni;
  4. $e_nama = $this->nam;
  5. $e_alamat_sekolah = $this->alamat_seko;
  6. $e_judul = $this->jud;
  7. $e_pesan = $this->pes;
  8. return $this
  9. ->view('permohonan.template_mail', compact("e_pesan"))
  10. ->subject($e_judul)
  11. ->attach(storage_path('app/file.pdf'), [
  12. 'as' => 'secret.pdf'
  13. ]);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement