Python
Python allows you to simply send emails through an SMTP native library : smtplib
Here is a code example that you can adapt
/* * File Name : send.py * Task : send email through Tipimail */ #!/usr/bin/python import smtplib from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText msg = MIMEMultipart('mixed') msg['Subject'] = 'subject' msg['From'] = 'from@mail.tipimail.com' msg['To'] = 'to@mail.tpimail.com' html = 'HTML message' text = 'texte message' part1 = MIMEText(text, 'plain') part2 = MIMEText(html, 'html') username = 'username' password = 'password' msg.attach(part1) msg.attach(part2) s = smtplib.SMTP('smtp.tipimail.com', 587) s.starttls() s.login(username, password) try: s.sendmail(msg['From'], msg['To'], msg.as_string()) finally: s.quit()
Call the script
python send.py