• Resolved jj

    (@shadyshroomz)


    I want to have my emails be sent out like this picture.
    https://puu.sh/bW3Li/de03bb2a8a.png
    alt: https://i.imgur.com/jXpTXL2.png
    Here is my _loop.php

    <table <?php $this->classes('nopmb ctable'); ?> cellspacing='0' cellpadding='0'>
    <?php while (have_posts()) : the_post(); ?>
    	<tr>
    		<td <?php $this->classes('nopmb ctd'); ?>>
    			<div <?php $this->classes('cdiv'); ?>>
    				<h2 <?php $this->classes('ch2'); ?>>
    					<a <?php $this->classes('clink'); ?> href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
    <?php the_title(); ?>
    					</a>
    				</h2>
    				<small <?php $this->classes('nopmb cdate'); ?>>
    <?php the_time('F j, Y') ?>
    				</small>
    				<div <?php $this->classes('nopmb'); ?>>
    					<p <?php $this->classes('nopmb cp'); ?>>
    					<div style="margin: 0px;">
    <?php $this->the_image(); ?>
    					</div>
    <?php the_excerpt_rss(); ?>
    					</p>
    				</div>
    			</div>
    		</td>
    	</tr>
    <?php endwhile; ?>
    </table>

    https://www.ads-software.com/plugins/mailpress/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author arena

    (@arena)

    do you expect me to develop the html of your mails ?

    Thread Starter jj

    (@shadyshroomz)

    It takes you one month to respond and you are completely unhelpful, then you mark this topic as resolved, even though it’s not. I have no idea how to use html, and I got 90% of the work done, I just couldn’t figure out how to put a space in the post. I understand my original post may of come off a little rude, but that is no reason for you to be purposely rude back.

    Plugin Author arena

    (@arena)

    sorry for being as rude as you were !

    so you want to add a space in your post ??!!

    there are different spaces in html

    the blank ‘ ‘
    the non breaking space  

    now if you want to have a new line the html tag

    will do that

    Plugin Author arena

    (@arena)

    non breaking space see

    https://www.w3schools.com/html/html_entities.asp

    the break html tag for a new line

    https://www.w3schools.com/tags/tag_br.asp

    Thread Starter jj

    (@shadyshroomz)

    I figured it out by doing:
    <div style=”float: left; padding: 10px 10px 10px 10px;”>
    on the image…

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Email Structure’ is closed to new replies.