Hi there,
You can go to
Backend>Components>Easyblog>Emails>Emails template and edit
post.new.php files and removes codes below and see how it goes
[gist type="php"]
//For avatar
<div style="display:inline-block; margin: 0 -2px; max-width: 84px; min-width:64px; vertical-align:top; width:100%;" class="stack-column">
<table role="presentation" aria-hidden="true" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td dir="ltr" style="padding: 0 10px 10px 10px;">
<img src="<?php echo $blogAuthorAvatar;?>" aria-hidden="true" width="64" height="64" border="0" alt="" class="center-on-narrow" style="width: 100%; max-width: 64px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;">
</td>
</tr>
</table>
</div>
//For published date and author name
<div style="display:inline-block; margin: 0 -2px; max-width:86.66%; min-width:320px; vertical-align:top;" class="stack-column">
<table role="presentation" aria-hidden="true" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td dir="ltr" style="font-family: sans-serif; font-size: 20px; line-height: 28px; color: #555555; padding: 0px 10px 0; text-align: left;" class="center-on-narrow">
<a href="<?php echo $blogLink;?>" target="_blank" style="color: #4E92DF; text-decoration: none; line-height: 28px;"><?php echo $blogTitle;?></a>
<p style="margin:0px 0 10px 0;font-size: 14px; line-height: 28px;">
<a href="<?php echo $blogAuthorLink;?>" target="_blank" style="color: #4E92DF; text-decoration: none;"><?php echo $blogAuthor;?></a> <?php echo JText::sprintf('COM_EASYBLOG_MAIL_TEMPLATE_POSTED_ON', $blogDate);?>
</p>
</td>
</tr>
</table>
</div>
[/gist]
Please give it a try and see how it goes
Note:
Steps above are quick way to do template override and new features on our latest version. And it required for you to generate a new emails in order to make sure those changes take place.