Guest User

Untitled

a guest
Jan 16th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php
  2.  
  3. $de_brochure = ('https://ruta/de-brochure.pdf');
  4. $en_brochure = ('https://ruta/en-brochure.pdf');
  5. $es_brochure = ('https://ruta/es-brochure.pdf');
  6. $country_code = 'ES'; // Normally I get this code from a form.
  7. $brochure = array ( $de_brochure, $en_brochure, $es_brochure );
  8. $brochure_link = '';
  9.  
  10. if ( $country_code == 'ES' ) {
  11.  
  12. $subject = 'Ejemplo';
  13. $txt = 'El dossier a enviar es' . $brochure_link[$brochure];
  14. $headers = 'De: [email protected]' . 'rn' .
  15.  
  16. mail ($to, $subject, $txt, $headers );
  17.  
  18. }
  19.  
  20. else {
  21.  
  22. echo $country_code . 'no es el código de españa';
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment