Sending an anonymous email to my own address
Posted
by
N3HL
on Stack Overflow
See other posts from Stack Overflow
or by N3HL
Published on 2014-06-02T02:02:53Z
Indexed on
2014/06/02
3:26 UTC
Read the original article
Hit count: 151
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?
© Stack Overflow or respective owner