Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/02/2013, 08:45
luthorsant
 
Fecha de Ingreso: julio-2009
Mensajes: 64
Antigüedad: 14 años, 9 meses
Puntos: 1
no puedo enviar email con funcion php mail

Un saludo,

no puedo enviar email con funcion php mail, pero si por medio de mercury

uso la version de xampp 1.8.1

tengo configurado el php.ini asi:
Código HTML:
Ver original
  1. [mail function]
  2. ; XAMPP: Comment out this if you want to work with an SMTP Server like Mercury
  3.  SMTP = localhost
  4.  smtp_port = 25
  5.  
  6. ; For Win32 only.
  7. ; http://php.net/sendmail-from
  8. sendmail_from = postmaster@localhost
  9.  
  10. ; XAMPP IMPORTANT NOTE (1): If XAMPP is installed in a base directory with spaces (e.g. c:\program filesC:\xampp) fakemail and mailtodisk do not work correctly.
  11. ; XAMPP IMPORTANT NOTE (2): In this case please copy the sendmail or mailtodisk folder in your root folder (e.g. C:\sendmail) and use this for sendmail_path.  
  12.  
  13. ; XAMPP: Comment out this if you want to work with fakemail for forwarding to your mailbox (sendmail.exe in the sendmail folder)
  14. ;sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"
  15.  
  16. ; XAMPP: Comment out this if you want to work with mailToDisk, It writes all mails in the C:\xampp\mailoutput folder
  17. sendmail_path = "C:\xampp\mailtodisk\mailtodisk.exe"

y mi codigo php esta asi:
Código PHP:
Ver original
  1. <?php
  2. mail('[email protected]', 'Comprobar envio php', 'Prueba de contenido');
  3. ?>

le ha pasado alguno de ustedes esto?
de antemano gracias por vuestra ayuda