Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
98
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. $to = 'info@kazzabe.com.es';
  13. $subject = 'Ejemplo';
  14. $txt = 'El dossier a enviar es' . $brochure_link[$brochure];
  15. $headers = 'De: sample@sample.com' . 'rn' .
  16. 'CC: anothersample@sample.com';
  17.  
  18. mail ($to, $subject, $txt, $headers );
  19.  
  20. }
  21.  
  22. else {
  23.  
  24. echo $country_code . 'no es el código de españa';
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement