I run a query and get the table like this,
user user_email content
Jack
[email protected] abcmdsfsadfsadfsadfsdf
Mike
[email protected] suiyeworuiweourwqoerw
And I want to use command "sendmail" to send email to each user and the message is the content value. But looks like only the first user "Jack" can receive the email, Mike can't. Can you please shed a light, how to send email to multi users one by one?
sendemail to=$result.user_email$ from="
[email protected]" subject="This is testing!" message="Hi, it's your content $result.content$." sendresults=true inline=true format=raw
... View more