Hi, Are you looking for a custom email template for your Magento store? Try the below code!
Try this code to create email template
add following code in config.xml
<global>
<template>
<email>
<custome_email module=”wholecust”>
<label>Custome Email</label>
<file>custome_email.html</file>
<type>html</type>
</custome_email>
</email>
</template>
</global>
add custome_email.html file in this directory
app/locale/en_US/template/email/
<body style=”background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;”>
<div style=”background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;”>
<table cellspacing=”0″ cellpadding=”0″ border=”0″ height=”100%” width=”100%”>
<tr>
<td align=”center” valign=”top” style=”padding:20px 0 20px 0″>
<!– [ header starts here] –>
<table bgcolor=”FFFFFF” cellspacing=”0″ cellpadding=”10″ border=”0″ width=”650″ style=”border:1px solid #E0E0E0;”>
<tr>
<td valign=”top”>
<a href=”{{store url=””}}” style=”color:#1E7EC8;”><img src=”{{var logo_url}}” alt=”{{var logo_alt}}” border=”0″/></a>
</td>
</tr>
<!– [ middle starts here] –>
<tr>
<td valign=”top”>
<h1 style=”font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;”>write content…</h1>
Name: {{var name}}<br />
Email: {{var email}}<br />
</td>
</tr>
<tr>
<td bgcolor=”#EAEAEA” align=”center” style=”background:#EAEAEA; text-align:center;”><center><p style=”font-size:12px; margin:0;”>Thank you again, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</body>
If you are facing any error or problem with this code then please make comment here or contact the Professional Magento Template Designers.
Thanks!