Could it be that you're not opening/reading the log file?
Maybe add something like:
with open(logpath, 'r') as f:
log_content = f.read()
then add it to the body with an f-string like:
body = f"""
Neptun has restared for less than 1 min ago.
Log:
{log_content}
"""