Diligent web site
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Callback_function_notes.txt 599B

1234567891011121314151617
  1. NEW CALLBACK FUNCTION:
  2. ======================
  3. We have had requests for a method to process the results of sending emails
  4. through PHPMailer. In this new release, we have implemented a callback
  5. function that passes the results of each email sent (to, cc, and/or bcc).
  6. We have provided an example that echos the results back to the screen. The
  7. callback function can be used for any purpose. With minor modifications, the
  8. callback function can be used to create CSV logs, post results to databases,
  9. etc.
  10. Please review the test.php script for the example.
  11. It's pretty straight forward.
  12. Enjoy!
  13. Andy