All Projects → codePerfectPlus → PyEmailer

codePerfectPlus / PyEmailer

Licence: MIT license
Send Emails In One Click With Python.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to PyEmailer

go-smtp-mock
SMTP mock server written on Golang. Mimic any 📤 SMTP server behavior for your test environment with fake SMTP server.
Stars: ✭ 76 (+162.07%)
Mutual labels:  smtp-server, smtplib
ControlCenter
Mirrored from GitLab! Monitoring and automation for Open Source email servers, starting with Postfix. Please do not submit issues or PRs here - join us at: https://gitlab.com/lightmeter
Stars: ✭ 88 (+203.45%)
Mutual labels:  email-sender, smtp-server
Grex
A command-line tool and library for generating regular expressions from user-provided test cases
Stars: ✭ 4,847 (+16613.79%)
Mutual labels:  regular-expression, regular-expressions
RgxGen
Regex: generate matching and non matching strings based on regex pattern.
Stars: ✭ 45 (+55.17%)
Mutual labels:  regular-expression, regular-expressions
Libphorward
C/C++ library for dynamic data structures, regular expressions, lexical analysis & more...
Stars: ✭ 18 (-37.93%)
Mutual labels:  regular-expression, regular-expressions
Re Flex
The regex-centric, fast lexical analyzer generator for C++ with full Unicode support. Faster than Flex. Accepts Flex specifications. Generates reusable source code that is easy to understand. Introduces indent/dedent anchors, lazy quantifiers, functions for lex/syntax error reporting, and more. Seamlessly integrates with Bison and other parsers.
Stars: ✭ 274 (+844.83%)
Mutual labels:  regular-expression, regular-expressions
moar
Deterministic Regular Expressions with Backreferences
Stars: ✭ 19 (-34.48%)
Mutual labels:  regular-expression, regular-expressions
Dan Jurafsky Chris Manning Nlp
My solution to the Natural Language Processing course made by Dan Jurafsky, Chris Manning in Winter 2012.
Stars: ✭ 124 (+327.59%)
Mutual labels:  regular-expression, regular-expressions
Regex For Regular Folk
🔍💪 Regular Expressions for Regular Folk — A visual, example-based introduction to RegEx [BETA]
Stars: ✭ 242 (+734.48%)
Mutual labels:  regular-expression, regular-expressions
Regex.persian.language
Collection of Regex for validating, filtering, sanitizing and finding Persian strings
Stars: ✭ 172 (+493.1%)
Mutual labels:  regular-expression
Werdlists
⌨️ Wordlists, Dictionaries and Other Data Sets for Writing Software Security Test Cases
Stars: ✭ 216 (+644.83%)
Mutual labels:  regular-expression
Parseback
A Scala implementation of parsing with derivatives
Stars: ✭ 168 (+479.31%)
Mutual labels:  regular-expression
Ocaml Re
Pure OCaml regular expressions, with support for Perl and POSIX-style strings
Stars: ✭ 172 (+493.1%)
Mutual labels:  regular-expression
Renamer
Rename files in bulk.
Stars: ✭ 240 (+727.59%)
Mutual labels:  regular-expression
Regularexpressiondecoder
A decoder that constructs objects from regular expression matches.
Stars: ✭ 169 (+482.76%)
Mutual labels:  regular-expression
smtprelay
Simple Golang SMTP relay/proxy server
Stars: ✭ 270 (+831.03%)
Mutual labels:  smtp-server
Router
⚡️ A lightning fast HTTP router
Stars: ✭ 158 (+444.83%)
Mutual labels:  regular-expression
regex-comuns
Um estudo de regex comuns
Stars: ✭ 15 (-48.28%)
Mutual labels:  regular-expression
String Replace Loader
Replace loader for Webpack
Stars: ✭ 205 (+606.9%)
Mutual labels:  regular-expression
Automata.js
A regular expression converter
Stars: ✭ 202 (+596.55%)
Mutual labels:  regular-expression

header

Python 3.7 issues forks stars License

Visitor Count

Blog On Python, Machine Learning and Data Science Visit CodePerfectPLus

Create App Password in gmail.

  • GO to Account setting/Security
  • click app password
  • Select APP -> others, Select Device -> Others
  • Copy paste the code in script.py password variable

Usage

git clone https://github.com/codePerfectPlus/PyEmailer
cd PyEmailer
from src.send_email import PyEmailer

your_email_id = "your_email_id"
your_app_password = "your_app_password"
email_subject = "email_subject_here"
email_content = "<h1> Email Content can be html too</h1>"
listOfEmail = ["[email protected]", "[email protected]"]

pyemail = PyEmailer(your_email_id, your_app_password)

if __name__ == "__main__":
    pyemail.sendEmail(email_subject, email_content, listOfEmail)

Upcoming features

  • file attachment in email
  • RegEx to verify the Emails

Project

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].