3

I have question about PHP mail function. Is it synchronous or asynchronous?

halfer
  • 19,824
  • 17
  • 99
  • 186
Swap.Y
  • 139
  • 1
  • 14

2 Answers2

2

synchronous, it waits for a response.

berend
  • 553
  • 2
  • 12
2

By default it's synchronous

If you need asynchronous: Making PHP's mail() asynchronous

Community
  • 1
  • 1
Dominique
  • 1,080
  • 14
  • 29