0
The system I am developing generates PDF files and stores them in a folder to be sent by email. Is it possible to temporarily save this file while it is attached and the email is sent? If so, how?
0
The system I am developing generates PDF files and stores them in a folder to be sent by email. Is it possible to temporarily save this file while it is attached and the email is sent? If so, how?
Browser other questions tagged php phpmailer
You are not signed in. Login or sign up in order to post.
Daniel Neto I recommend you to do the tour to understand how the community works, first try to do something, then ask the question by exposing your question and or problem.
– user81560
Use the return of the sending function if the return is
true
, is sign that the file has already been sent and that you can already delete it.– Valdeir Psr
That solves my problem, thanks.
– Daniel Neto