Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2017
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. Os passos foram tirados e adaptados do comentário original em PHP.net:
  2.  
  3. 1 - Baixe o arquivo sendmail.zip de http://glob.com.au/sendmail/. Se você usa XAMPP, ele já vem incluído (pule então o passo 2).
  4.  
  5. 2 - Descompacte para alguma pasta do Windows, mas de preferência com nomes curtos (como por exemplo C:\sendmail).
  6.  
  7. 3 - Edite seu PHP.ini (no WAMP/XAMPP, acesse pelo menu próprio), e configure como abaixo (repare que vamos usar configurações do Sendmail nos Unix): [mail function] ; For Win32 only. ;SMTP =
  8.  
  9. ; For Win32 only. ;sendmail_from =
  10.  
  11. ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). sendmail_path = "C:\sendmail\sendmail.exe -t"
  12.  
  13. ; Force the addition of the specified parameters to be passed as extra parameters ; to the sendmail binary. These parameters will always replace the value of ; the 5th parameter to mail(), even in safe mode. ;mail.force_extra_paramaters =
  14.  
  15. 4 - Salve suas alterações do PHP.ini.
  16.  
  17. 5 - Agora abra o arquivo SENDMAIL.ini e edite os seguintes campos: smtp_server: o endereço do servidor SMTP; smtp_port: a porta do servidor SMTP; default_domain: o domínio do seu email; pop3_server: o endereço do servidor POP3; pop3_username: seu email; pop3_password: sua senha. Pegue estas informações com seu provedor de email. No caso do Gmail, pegue as informações da seguinte página de ajuda: Gmail: Configurando o Outlook Express.
  18.  
  19. [sendmail]
  20.  
  21. ; you must change mail.mydomain.com to your smtp server,
  22. ; or to IIS's "pickup" directory. (generally C:\Inetpub\mailroot\Pickup)
  23. ; emails delivered via IIS's pickup directory cause sendmail to
  24. ; run quicker, but you won't get error messages back to the calling
  25. ; application.
  26.  
  27. smtp_server=smtp.yourdomain.com
  28.  
  29. ; smtp port (normally 25)
  30. ; ATENÇÃO: PARA SSL É 465
  31. ; ATENÇÃO: PARA GMAIL É 587 (E APENAS COM SSL)!
  32.  
  33. smtp_port=25
  34.  
  35. ; the default domain for this server will be read from the registry
  36. ; this will be appended to email addresses when one isn't provided
  37. ; if you want to override the value in the registry, uncomment and modify
  38.  
  39. default_domain=yourdomain.com
  40.  
  41. ; log smtp errors to error.log (defaults to same directory as sendmail.exe)
  42. ; uncomment to enable logging
  43. ; error_logfile=sendmail_error.log
  44.  
  45. ; create debug log as debug.log (defaults to same directory as sendmail.exe)
  46. ; uncomment to enable debugging
  47. ; debug_logfile=sendmail_debug.log
  48.  
  49. ; if your smtp server requires authentication, modify the following two lines
  50.  
  51. ;auth_username=
  52. ;auth_password=
  53.  
  54. ; if your smtp server uses pop3 before smtp authentication, modify the
  55. ; following three lines
  56.  
  57. pop3_server=pop.yourdomain.com
  58. pop3_username=you@yourdomain.com
  59. pop3_password=mysecretpassword
  60.  
  61. ; to force the sender to always be the following email address, uncomment and
  62. ; populate with a valid email address. this will only affect the "MAIL FROM"
  63. ; command, it won't modify the "From: " header of the message content
  64.  
  65. force_sender=you@yourdomain.com
  66.  
  67. ; sendmail will use your hostname and your default_domain in the ehlo/helo
  68. ; smtp greeting. you can manually set the ehlo/helo name if required
  69.  
  70. hostname=
  71. 6 - Reinicie o Apache
  72.  
  73. 7 - Alguns serviços de email precisam de configuração para permitir o acesso POP3. No Gmail, por exemplo, execute os passos descritos em "Enabling POP".
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement