Plausible? ... Yes , Likely? ... No
This is such a niche request that it would be easier to just make it with Python (SMTP):
#!/usr/bin/python
import smtplib
sender = 'fromabz@fromdomain.com'
receivers = ['to@todomain.com']
message = """From: From Person <<>abz@fromdomain.com>
To: To Person <<>abz@todomain.com>
Subject: SMTP e-mail test
This is a test e-mail message.
"""
try:
smtpObj = smtplib.SMTP('localhost')
smtpObj.sendmail(sender, receivers, message)
print "Successfully sent email"
except SMTPException:
print "Error: unable to send email"
Or more likely you will have to use IMAP/Pop3 service like Gmail:
devshed.com/c/a/Python/Python-Email-Libraries-part-1-POP3