MyBB Community Forums

Full Version: Customise sent emails
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I put my logo and links to outgoing mass e-mails?
Compose your email in an HTML editor and then paste it into the mass mail message. Leave out the HTML head tags and anything else the editor puts into the head, also the ending body tags.
(2013-01-11, 07:46 PM)Puppyite Wrote: [ -> ]Compose your email in an HTML editor and then paste it into the mass mail message. Leave out the HTML head tags and anything else the editor puts into the head, also the ending body tags.

So I do the
<html>
<body>
items here for example <img src="">

Then leave out the </body> and put the </html>
Yes like this:
 A <a href="http://community.mybb.com/">link</a> in message. An image in a message. <img alt="Puppyite's Avatar" src="http://community.mybb.com/uploads/avatars/avatar_47537.jpg?dateline=1313931089"
height="70" width="70">
(2013-01-11, 08:20 PM)Puppyite Wrote: [ -> ]Yes like this:
 A <a href="http://community.mybb.com/">link</a> in message. An image in a message. <img alt="Puppyite's Avatar" src="http://community.mybb.com/uploads/avatars/avatar_47537.jpg?dateline=1313931089"
height="70" width="70">

Do I have to put the CSS in the code or can I link to it?
(2013-01-11, 08:26 PM)markwesley Wrote: [ -> ]
(2013-01-11, 08:20 PM)Puppyite Wrote: [ -> ]Yes like this:
 A <a href="http://community.mybb.com/">link</a> in message. An image in a message. <img alt="Puppyite's Avatar" src="http://community.mybb.com/uploads/avatars/avatar_47537.jpg?dateline=1313931089"
height="70" width="70">

Do I have to put the CSS in the code or can I link to it?

I don't know, I never tried that, at least not in an email message. I'm not sure how email clients handle CSS. You might try using inline CSS within the HTML.
Okay thanks. Smile