Guest User

Untitled

a guest
Apr 21st, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $message = array(
  2. 'to' => 'contato@dominio.com.br',
  3. 'from_email' => $_POST['email'],
  4. 'from_name' => $_POST['name'],
  5. 'headers' => array('reply-to: ' . $_POST['email'], 'from: ' . $_POST['email']),
  6. 'subject' => 'Contato do Site',
  7. 'merge' => 1,
  8. 'global_merge_vars' => $data
  9. );
  10. $headers[] = 'From: '.$_POST["first_name"].' <'.$_POST["email"].'>';
  11.  
  12. wp_mail('contato@dominio.com.br', 'Qualquer texto', $conteudo, $headers);
Add Comment
Please, Sign In to add comment