Hello,
I use the following PHP code to send 2 emails consecutively:
mail($mess_from_adr, "Message_1", $message_1, "From: $back_to_full", "-f $back_to_adr"
mail($mess_from_adr, "Message_2", $message_2, "From: $back_to_full", "-f $back_to_adr"
The problem is that sometimes the receiver gets message_2 before message_1.
Is there any way I can force Sendmail to deliver messages always in the right order? Does the problem come from the receiver?
Thank you very much.
I use the following PHP code to send 2 emails consecutively:
mail($mess_from_adr, "Message_1", $message_1, "From: $back_to_full", "-f $back_to_adr"
mail($mess_from_adr, "Message_2", $message_2, "From: $back_to_full", "-f $back_to_adr"
The problem is that sometimes the receiver gets message_2 before message_1.
Is there any way I can force Sendmail to deliver messages always in the right order? Does the problem come from the receiver?
Thank you very much.