Rovangju's answer is incorrect in some significant parts.
The status entry of sent means the remote server accepted the message. Anything else means it is still on your server or not going anywhere. Deferred means a temporary error seems to have occurred, bounced means the message isn't going anywhere but a notification is or will be sent to the original sender. There is an additional status of hold but you wil only see that if you have told your postfix instance to take the hold action and that requires configuration changes.
The comments in the parentheses of a status entry is the reply given by the remote server when sending the email. It is useful for seeing why a message was rejected, deferred, or held. If it is sent it is of no value beyond curiosity. Well, mostly. There are rare circumstances where it can prove useful to the admin of the server that accepted the message form your server, or in special cases of log relay mail tracing. Outside of thstthey are just informational in a status=sent entry.
The remote server accepting it has no bearing on the message being read or not. That would be a "read receipt" and would actually be a different email coming back to the sender informing them. And that will only happen if the remote server that handles displaying mail to the user (which may not be the server you deliver it to) is able and configured for those, and the client the reader uses allows it.
In many years of running postfix mail relays I've never seen a status of message accepted. Thus I suspect that is an inbound message and the message was accepted for local delivery, not for relaying to another destination. I would expect a status=sent (message accepted for delivery) from a postfix relay. and like above this would be message from the remote server. If hour postfix system does not have local mailboxes that you are sending to I would be concerned.
The reason for this is that postfix status messages themselves are a single word, not sentences. Perhaps you mistyped or misread it? If not if you can paste the actual line I may be able to help further.
Status lines are logged by the stmp client in postfix, message acceptance by postfix is done by smtpd. You can also easily tell the difference by looking for postfix/smtp or postfix/smtpd in the log entry. The former is postfix sending the message and the latter is postfix accepting it.
The status message is the higher priority with regards to importance as it indicates the status. The rest is merely explanation or additional information regarding the status. If you just want to know what the status for a given transaction is then the word after status= is all you need to know. Note however that if a particular email has recipients that go to different destinations such as one recipient at yahoo and another at gmail, then each delivery attempt will have a status entry. Also, a message that is deferred will have a minimum of two status entries - the initial deferral and the final result. It may result in dozens of delivery attempts.
In this sense it is important to keep in mind that the status entry in the log simply tells you the result of that transaction.
If you are going to be operating a postfix relay it would be a wise idea to visit postfix.org and the postfix resources such as the mailing list and/or The Book of Postfix. There are easy pitfalls you can encounter when you are trying to send bulk email. While keeping an eye on your logs is a good idea, the best way to learn is to make use of the postfix community, as well as the log analysis community. Learning how postfix works will spare you many questions about the logs. This will be of far more use to you than simply watching what is going on as you will then be able to look at the logs and either know what is wrong or know where to start. And something will go wrong.
Cheers