Skip to content
Advertisement

Load dynamic values into msgHTML in phpmailer body from database

What I am trying doing here is inserting and sending the number of orders via SMTP phpmailer. I am using foreach to separate the order data into key value pair and inserting into the database.

can see here: here

once the execution is successful now I want to send a mail to the owner with the order details which is just inserted. Just for a test I only picked productid as a order detail.

Here is the mail that just arrived. here

Problem

What I am looking is the database has inserted 2 productid (26,27) but in mail i only got productid (26) I want the dynamic productid insertion inside the mail body. I use while loop but I thing the goal cannot achieve or fulfill. I would be appreciate if anyone printout where I am getting wrong.

PHP:

Advertisement

Answer

Every time you call $mail->msgHTML($message); it replaces the entire contents of Body; it doesn’t add to it. I would expect you do something along the lines of:

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement