All Projects → EvotecIT → Emailimo

EvotecIT / Emailimo

Licence: mit
Small project that simplifies (according to me) sending colorful emails in PowerShell

Programming Languages

powershell
5483 projects

Projects that are alternatives of or similar to Emailimo

bulk-email-sender
Send Templatized Dynamic Emails Automatically
Stars: ✭ 30 (-45.45%)
Mutual labels:  email-marketing, email-sender, email-template
Vue Email Editor
Drag-n-Drop Email Editor Component for Vue.js
Stars: ✭ 166 (+201.82%)
Mutual labels:  email-marketing, email-template
Responsive Html Email Template
A free simple responsive HTML email template
Stars: ✭ 10,831 (+19592.73%)
Mutual labels:  email-marketing, email-template
React Email Editor
Drag-n-Drop Email Editor Component for React.js
Stars: ✭ 3,131 (+5592.73%)
Mutual labels:  email-marketing, email-template
Email Templates
Free HTML email templates for Mailchimp and other emails services
Stars: ✭ 457 (+730.91%)
Mutual labels:  email-marketing, email-template
Mosaico
Mosaico - Responsive Email Template Editor
Stars: ✭ 1,392 (+2430.91%)
Mutual labels:  email-marketing, email-template
Email Dashboard
📪 An interactive emailing management service with scheduling, templating, tracking and A/B testing.
Stars: ✭ 194 (+252.73%)
Mutual labels:  email-marketing, email-sender
Pine
A modular and lightweight, responsive email framework.
Stars: ✭ 98 (+78.18%)
Mutual labels:  email-marketing, email-template
mjml-server
MJML wrapped in Express for use over HTTP
Stars: ✭ 31 (-43.64%)
Mutual labels:  email-marketing, email-template
acorn
A responsive email framework based on a golden ratio typography grid.
Stars: ✭ 90 (+63.64%)
Mutual labels:  email-marketing, email-template
email-template-generator
Simple and useful web app to generate e-mails for any reason you want!
Stars: ✭ 51 (-7.27%)
Mutual labels:  email-marketing, email-template
Spring Boot Email Tools
A set of services and tools for sending emails in a Spring Boot 1.5.x application using a Template Engine
Stars: ✭ 164 (+198.18%)
Mutual labels:  email-sender, email-template
Html Email Templates
Free HTML Email Templates created using the Postcards - https://designmodo.com/postcards/
Stars: ✭ 178 (+223.64%)
Mutual labels:  email-marketing, email-template
easy-email
React.js Drag-and-Drop Email Editor based on MJML. Transform structured JSON data into major email clients compatible HTML. Written in Typescript and supported both in browser and Node.js.
Stars: ✭ 449 (+716.36%)
Mutual labels:  email-marketing, email-template
Maizzle
Official Maizzle starter project.
Stars: ✭ 921 (+1574.55%)
Mutual labels:  email-marketing, email-template
Fxmailer
Desktop application Tool. Allow you to send a beautiful html template to multiple email recipients with one click!
Stars: ✭ 55 (+0%)
Mutual labels:  email-sender, email-template
Bojler
Bojler is an email framework
Stars: ✭ 885 (+1509.09%)
Mutual labels:  email-template
Listmonk
High performance, self-hosted, newsletter and mailing list manager with a modern dashboard. Single binary app.
Stars: ✭ 7,294 (+13161.82%)
Mutual labels:  email-marketing
Cerberus
A few simple, but solid patterns for responsive HTML email templates and newsletters. Even in Outlook and Gmail.
Stars: ✭ 4,356 (+7820%)
Mutual labels:  email-template
Voicemail
🔈 📧 Voice Based Email for (Blinds?)
Stars: ✭ 40 (-27.27%)
Mutual labels:  email-sender

Emailimo - PowerShell Module

Emailimo is simplified PowerShell module allowing to send emails using english like syntax. It provides easy to use commands that allow you to sort of tyupe your email like you would in Outlook (to some extent - it's still PowerShell you know!). Emailimo is based on PSWriteHTML.

IMPORTANT

Emailimo project has been integrated back to PSWriteHTML. This project is now ARCHIVED. Emailimo syntax and functionality will live as part of PSWriteHTML.

Uninstall-Module Emailimo -AllVersions
Install-Module PSWriteHTML -Force

Everything below is relavant with a change that what you see here is actually now a functionality of PSWriteHTML. Leaving this for historical reasons. The reason for moving Emailimo to PSWriteHTML was that it was getting hard to keep both modules in sync, especially that 90% of features was identical with exception of sending emails. Emailimo features will be fully supported as part of PSWriteHTML. Hope to see you in that project.

ARCHIVE

Changelog

  • 0.0.12 - 2019.11.11

    • Emailimo has been moved to PSWriteHTML
    • This is last release of Emailimo. It basically points to PSWriteHTML making Emailimo, an empty module that just downloads PSWriteHTML. There is no need to download/install Emailimo. You can use Emailimo syntax straight from PSWriteHTML, just like you did before. Just make sure to update PSWriteHTML to newest version.
  • 0.0.10 - 2019.10.28

    • Fix for EmailAttachment
  • 0.0.9 - 2019.08.25

    • Support for new PSWriteHTML
  • 0.0.8 - 2019.08.11

    • Support for new PSWriteHTML
  • 0.0.7 - 2019.06.17

    • Support for new PSWriteHTML
  • 0.0.6 - 2019.06.02

    • Fix for EmailListItem for multiple texts
  • 0.0.2 to 0.0.5

    • Something important but forgot what
  • 0.0.1 - 2019.04.12

Example 1

Email -WhatIf {
    EmailHeader {
        EmailFrom -Address '[email protected]'
        EmailTo -Addresses "[email protected]"
        EmailServer -Server 'mail.evotec.com' -UserName 'UserName' -Password 'C:\Support\Important\Password-Evotec-Reminder.txt' -PasswordAsSecure -PasswordFromFile
        EmailOptions -Priority High -DeliveryNotifications Never
        EmailSubject -Subject 'This is a test email'
    }
    EmailBody -FontFamily 'Calibri' -Size 15 {
        EmailText -Text "Hello ", $UserNotify, "," -Color None, Blue, None -Verbose -LineBreak
        EmailText -Text "Your password is due to expire in ", $PasswordExpiryDays, "days." -Color None, Green, None
        EmailText -LineBreak
        EmailText -Text 'To change your password: '
        EmailText -Text '- press ', 'CTRL+ALT+DEL', ' -> ', 'Change a password...' -Color None, BlueViolet, None, Red
        EmailText -LineBreak
        EmailTextBox {
            'If you have forgotten your password and need to reset it, you can do this by clicking here. '
            "In case of problems please contact the HelpDesk by visiting [Evotec Website](https://evotec.xyz) or by sending an email to Help Desk."
        }
        EmailText -LineBreak
        EmailText -Text 'Alternatively you can always call ', 'Help Desk', ' at ', '+48 22 00 00 00' `
            -Color None, LightSkyBlue, None, LightSkyBlue -TextDecoration none, underline, none, underline -FontWeight normal, bold, normal, bold
        EmailText -LineBreak
        EmailTextBox {
            'Kind regards,'
            'Evotec IT'
        }
    }
}

Example 1

Example 2

Email -WhatIf {
    EmailHeader {
        EmailFrom -Address '[email protected]'
        EmailTo -Addresses "[email protected]"
        EmailServer -Server 'mail.evotec.com' -UserName 'UserName' -Password 'C:\Support\Important\Password-Evotec-Reminder.txt' -PasswordAsSecure -PasswordFromFile
        EmailOptions -Priority High -DeliveryNotifications Never
        EmailSubject -Subject 'This is a test email'
    }
    EmailBody -FontFamily 'Calibri' -Size 15 {
        EmailText -Text "Hello ", $UserNotify, "," -Color None, Blue, None -Verbose -LineBreak
        EmailText -Text "Your password is due to expire in ", $PasswordExpiryDays, "days." -Color None, Green, None
        EmailText -LineBreak
        EmailText -Text 'To change your password: '
        EmailText -Text '- press ', 'CTRL+ALT+DEL', ' -> ', 'Change a password...' -Color None, BlueViolet, None, Red
        EmailText -LineBreak
        EmailTextBox {
            'If you have forgotten your password and need to reset it, you can do this by clicking here. '
            "In case of problems please contact the HelpDesk by visiting [Evotec Website](https://evotec.xyz) or by sending an email to Help Desk."
        }
        EmailText -LineBreak
        EmailText -Text 'Alternatively you can always call ', 'Help Desk', ' at ', '+48 22 00 00 00' `
            -Color None, LightSkyBlue, None, LightSkyBlue -TextDecoration none, underline, none, underline -FontWeight normal, bold, normal, bold
        EmailText -LineBreak
        EmailTextBox {
            'Kind regards,'
            'Evotec IT'
        }
    }
}

Example 2

Example 3

if ($null -eq $Table) {
    $Table = (Get-Process | Select-Object -First 5 -Property Name, BasePriority, Company, CompanyName)
}
if ($null -eq $Table1) {
    $Table1 = (Get-ChildItem | Select-Object -First 5)
}

Email -AttachSelf -AttachSelfName 'My report' {
    EmailHeader {
        EmailFrom -Address '[email protected]'
        EmailTo -Addresses "[email protected]"
        EmailCC -Addresses "[email protected]"
        EmailBCC -Addresses "[email protected]"
        EmailServer -Server 'mail.domain.pl' -UserName 'UserName' -Password 'C:\Support\Important\Password-Evotec-Reminder.txt' -PasswordAsSecure -PasswordFromFile
        EmailOptions -Priority Low
        EmailSubject -Subject 'This is a test email'
    }
    EmailBody {

        EmailTextBox -FontFamily 'Calibri' -Size 17 -TextDecoration underline -Color DarkSalmon -Alignment center {
            'Demonstration'
        }
        EmailText -LineBreak
        EmailTextBox -FontFamily 'Calibri' -Size 15 {
            "This is some text that's preformatted with Emoji 🤷 ‍️"
            "Adding more text, notice ths should be on next line"
            ""
            "Empty line above will cause a blank space. If you want to continue writting like you would do in normal email please use here strings as seen below."
            @"
                This is tricky but it works like one ❤
                big line... even thou we've split this over few lines
                already this will be one continues line. Get it right? 😎
"@
            ""
        }
        EmailTable -Table $Table
        EmailTextBox -FontSize 15 -Color DarkCyan -FontStyle italic {
            ""
            @"
                This is tricky 😁 but it works like one
                big line... even thou we've split this over few lines
                already this will be one continues line. Get it right?
                Notice how I gave it color and made it font size 15.
"@
            ""
        }
        EmailList -FontSize 15 {
            EmailListItem -Text 'First item' -Color Red
            EmailListItem -Text '2nd item' -Color Green
            EmailList {
                EmailListItem -Text '3rd item' -FontStyle italic
                EmailListItem -Text '4th item' -TextDecoration line-through
            }
        }

        EmailTable -Table $Table1
        EmailText -LineBreak
        EmailText -FontSize 15 -Text 'This is my', 'text' -Color Red, Green -TextDecoration underline -FontFamily 'Calibri'
        EmailText -LineBreak
        EmailText -FontSize 15 -Text 'This is my', 'text', ' but ', ' with different formatting.' -Color Blue, Red, Green -TextDecoration underline, none, 'line-through' -FontFamily 'Calibri'

        EmailText -LineBreak
    }
}

Example 3

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].