I want to send an
anonymous email to my own gmail/hotmail/yahoo/any other mail service address (Im not trying to spam or something like that).
Why? I have a .NET application and I want to add a "Send log to the developer" feature (attaching the log) using SmtpClient. The fact is I've read like 30+ pages, and found out, i.e. gmail's smtp client doesn't allow
anonymous connections, and many other things.
The idea is to receive a mail message like this:
From:
[email protected] (non-existent email really)
To:
[email protected] (this would be my real address which will recieve the logs attachments)
Subject: Issue report nºX (auto-generated)
Body: From a textbox
Attachments: logs attached
Is this possible? If so, how do I achieve it?