defaults.inc
上传用户:wl2659
上传日期:2007-01-04
资源大小:8k
文件大小:2k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?
  2. // phpMail Basic Configuration
  3.  
  4. // See also "files.inc" if you want to change the names
  5. // of the included HTML pages.
  6. // See also the "dbase.inc" to set up your database parameters
  7. // Define default values which are used when no config-data
  8. // is found in the HTML form. Some will need to be uncommented
  9. // (remove the leading "/") to work.
  10. // Who the mail should go to.  Leave undefined skip send (log/autoreply only)
  11. $defTo = "me@here.com";
  12. // Which values need to be input in form.
  13. $defRequired = "from";
  14. // Should we do a test for a valid from address?
  15. // Note: even with this turned off, the script will not
  16. // send an autoreply to an invalid address.  Also, if from
  17. // is not a required field, it will not be checked.
  18. $defCheckfrom = 1;
  19. // If using the "call from html page" version, configure
  20. // these lines.
  21. // $defUrl_error = http://your.place.com/error.html;
  22. // $defUrl_success = http://your.place.com/success.html;
  23. // The subject the sent mail should have.
  24. // $defSubject = "Mail from a webuser!";
  25. // Any extra headers for the sent mail.
  26. // $defSendextras = "X-Priority: highn";
  27. // The body template for the sent mail.
  28. // $defTemplate = "A mail was sent!nIt was from %from% and to %to%";
  29. // Who it should appear to be from.  Leave commented
  30. // out if you don't want to allow empty from lines.
  31. // $defFrom = "webuser@here.com";
  32. // Who the autoreply should appear to be from.  Leave
  33. // commented out if you want to maintain 1.0 compatibility.
  34. // If defTo is undefined (i.e. you only want to log the mail)
  35. // you can still have an autoreply by defining this variable
  36. // and the autoreply variable.
  37. // $defAutofrom = "lists@here.com";
  38. // The subject the autoreply should have.  Leave it
  39. // commented out if you want to maintain 1.0-style
  40. // autoreply subjects.
  41. // $defAutosubject = "Thanks for the mail!";
  42. // A prefix to the subject of autoreply messages if
  43. // left undefined, will default to "Auto-Reply: "
  44. // Will not be used if "autosubject" is defined
  45. // $defAutoprefix = "Re: ";
  46. // Any extra headers for the autoreply.
  47. // $defAutoextras = "Reply-To: realperson@here.comnErrors-To:me@here.comn";
  48. // The body template for the autoreply.
  49. // $defAutoreply = "Hi %name%!nThanks for the mail!nMe";
  50.  
  51. // Do logging?
  52. $defLog = 0;
  53. // Log bodies?
  54. $defLogbodies = 0;
  55. // Ask user for a second submission
  56. $defAskagain = 0;
  57. // That's it!
  58. ?>