Advertisement
Guest User

php.ini

a guest
Nov 22nd, 2014
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.38 KB | None | 0 0
  1. [mail function]
  2. ; XAMPP: Comment out this if you want to work with an SMTP Server like Mercury
  3.  SMTP = mail.telkomsel.com
  4.  smtp_port = 25
  5.  
  6. ; For Win32 only.
  7. ; http://php.net/sendmail-from
  8. sendmail_from =admin@gmail.com
  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. ; XAMPP: Comment out this if you want to work with fakemail for forwarding to your mailbox (sendmail.exe in the sendmail folder)
  13. sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"
  14.  
  15. ; XAMPP: Comment out this if you want to work with mailToDisk, It writes all mails in the C:\xampp\mailoutput folder
  16. sendmail_path="C:\xampp\mailtodisk\mailtodisk.exe"
  17.  
  18. ; Force the addition of the specified parameters to be passed as extra parameters
  19. ; to the sendmail binary. These parameters will always replace the value of
  20. ; the 5th parameter to mail(), even in safe mode.
  21. ;mail.force_extra_parameters =
  22.  
  23. ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
  24. mail.add_x_header=Off
  25.  
  26. ; Log all mail() calls including the full path of the script, line #, to address and headers
  27. ;mail.log = "C:\xampp\php\logs\php_mail.log"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement