This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Address Autocomplete - Map</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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)); |