Skip to content

Instantly share code, notes, and snippets.

View rajithsam's full-sized avatar
:octocat:

Rajith Sam rajithsam

:octocat:
View GitHub Profile
@rajithsam
rajithsam / Controller.php
Created June 1, 2018 10:19
Enviar PDF Base64 do jsPDF por E-mail Laravel 5.4
<?php
public function enviarPorEmail() {
// gerando um nome para o arquivo
$caminhoDoArquivo = storage_path('projeto-'.uniqid().'.pdf');
// remover data type da string
$base64 = str_replace('data:application/pdf;base64,', '', STRING_PDF_BASE64);
// salvar a string em uma pasta temporária para servir de anexo
file_put_contents($caminhoDoArquivo, base64_decode($base64));