v4mail

python package for sending html and non html emails


simplified python package for sending custom html and non html Gmail’s

OTP feature added to send email with OTP


Home

a simplified lightweight library on python for sending custom html Gmail’s


requires only python3 (programming language) and pip (for installing v4mail) use navigation bar or bottom navigation to change screen


created by vkv-onfire for sending custom html Gmail’s

We are on github and pypi visit our repositories at github and packages at pypi

installation

use pip for installing v4mail


$ pip install v4mail

We had uploaded our package to pypi only

python3 and pip are only needed

while using html

import v4mail

gmail=v4mail.html('your email here', 'your password here')

gmail.add('your subject', 'content html')

gmail.sendto('recipient email')

gmail.send()

if you face errors see the error handling at the navigation bar for preventing it


use send() to send mail

uses Gmail service to send mails

while using plane text

in plane text you can’t use html, all types are seperate

import v4mail

gmail=v4mail.text('your email here', 'your password here')

gmail.add('your subject', 'content text')

gmail.send('recipient email')

user only registered Gmail and password else it will show error

if you face any errors at error handling at navigation bar

uses Gmail service to send mails

using otp feature on v4mail