Advertisement
Guest User

Untitled

a guest
Apr 14th, 2017
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. MAIL_DRIVER=mailgun
  2. MAIL_HOST=smtp.mailgun.org
  3. MAIL_PORT=587
  4. MAIL_USERNAME=postmaster@sandbox....
  5. MAIL_PASSWORD=b37...
  6. MAIL_ENCRYPTION=tls
  7. MAIL_FROM_ADDRESS=NoReply
  8. MAIL_FROM_NAME=me
  9. MAILGUN_DOMAIN=sandbox{...}.mailgun.org
  10. MAILGUN_SECRET=key-68...
  11.  
  12. Mail::to($subscriber->email)
  13. ->send(new VerificationEmail($subscriber));
  14.  
  15. [curl]
  16. ; A default value for the CURLOPT_CAINFO option. This is required to be an
  17. ; absolute path.
  18. curl.cainfo="C:cURLsslcacert.pem"
  19.  
  20. [openssl]
  21. ; The location of a Certificate Authority (CA) file on the local filesystem
  22. ; to use when verifying the identity of SSL/TLS peers. Most users should
  23. ; not specify a value for this directive as PHP will attempt to use the
  24. ; OS-managed cert stores in its absence. If specified, this value may still
  25. ; be overridden on a per-stream basis via the "cafile" SSL stream context
  26. ; option.
  27. openssl.cafile="C:cURLsslopenssl.cnf"
  28.  
  29. ; If openssl.cafile is not specified or if the CA file is not found, the
  30. ; directory pointed to by openssl.capath is searched for a suitable
  31. ; certificate. This value must be a correctly hashed certificate directory.
  32. ; Most users should not specify a value for this directive as PHP will
  33. ; attempt to use the OS-managed cert stores in its absence. If specified,
  34. ; this value may still be overridden on a per-stream basis via the "capath"
  35. ; SSL stream context option.
  36. openssl.capath="C:cURLssl"
  37.  
  38. [curl]
  39. ; A default value for the CURLOPT_CAINFO option. This is required to be an
  40. ; absolute path.
  41. curl.cainfo="C:cURLsslcacert.pem"
  42.  
  43. [openssl]
  44. ; The location of a Certificate Authority (CA) file on the local filesystem
  45. ; to use when verifying the identity of SSL/TLS peers. Most users should
  46. ; not specify a value for this directive as PHP will attempt to use the
  47. ; OS-managed cert stores in its absence. If specified, this value may still
  48. ; be overridden on a per-stream basis via the "cafile" SSL stream context
  49. ; option.
  50. openssl.cafile="C:cURLsslopenssl.cnf"
  51.  
  52. ; If openssl.cafile is not specified or if the CA file is not found, the
  53. ; directory pointed to by openssl.capath is searched for a suitable
  54. ; certificate. This value must be a correctly hashed certificate directory.
  55. ; Most users should not specify a value for this directive as PHP will
  56. ; attempt to use the OS-managed cert stores in its absence. If specified,
  57. ; this value may still be overridden on a per-stream basis via the "capath"
  58. ; SSL stream context option.
  59. openssl.capath="C:cURLssl"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement