I am building an app for journaling purpose , were I will put all messages in an e-mail and will send it to a journaling mailbox . What I want is to display the email addresses of all the recepients of original messages in to field but not actually send them any mail. For example if a message was sent to "[email protected]" then on journaling I want to display "[email protected] " in to field of journaling mail but not actually send this mail to "[email protected]" I am coding this application in c#, is there any way to achieve this?
How to add multiple e-mail recipients in a mail , but send the mail to only a selected few addresses?
12.5k Views Asked by vidit mathur At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in SMTP
- I want to develop an automated email application in asp.net with c#
- Sending emails from a (distributable) desktop application
- How to determine the smtp server save send mails or not?
- add smtp to php mail function using phpmailer
- Camel route, unparsed date
- Why does this python script work on Ubuntu but not Raspbian?
- Getting Null Pointer Exception while sending mail in JAVA
- Spring Integration: SMTP server
- Django & Amazon SES SMTP. Cannot send email
- logging.handlers.SMTPHandler raises smtplib.SMTPAuthenticationError
- to send email with different 'from' email address using gmail smtp server in django
- how dynamically signin to a pop3 email is possible?
- Amazon Simple Email Service (SES) - Should I use SMTP Interface or SES API?
- Sendemail on Linux Debian Wheezy gives errors on gmail and gmx accounts
- Send-MailMessage : The SMTP server requires a secure connection... The server response was: 5.5.1 Authentication Required.
Related Questions in EXCHANGEWEBSERVICES
- PowerShell EWS Save as for e-mails
- Create Exchange Message Items with EWS and mark them for deletion
- How to cache Exchange web service API autodiscoverurl?
- Can't call EWS service with API Java SSL and certificates
- EWS Service.FindItems() throws an exception when using SearchFilter.IsEqualTo
- How to download >1 MB Email attachment using EWS in C#
- Office 365 Exchange Mailbox Properties
- EWS Office 365 Impersonation not working
- EWS Managed API: Identify deleted email when fetching from "AllItems" folder
- Can't find MasterCategoryList in ExchangeWebServices
- Microsoft Graph API Accessing basic info of a user that is outside tenancy
- EWS managed API for Windows Phone8 App
- Exchange Web Service Create a contact and add to global address list
- EWS Managed Api - Attachment URL
- Create contacts in Exchange through EWS
Related Questions in JOURNALING
- Want to use journaling enabled DB in 32 bit system-MongoDB
- Hibernate with DB2 AS400
- Journal/write-ahead-log technology for Java
- Ordered mode behavior in journaling file system
- Can the data=journal mode of EXT4 avoid user data loss?
- How to use AskAdjacentFacet function in NXOpen?
- Want to do an incremental backup for mongodb. Journaling? Oplog?
- Ordered Mode vs Writeback Mode
- How to change mongo.conf to set journaling
- Will a transport agent execute before journaling occurs exchange 2013?
- How to know which address space a buffer head is mapped to?
- How to add multiple e-mail recipients in a mail , but send the mail to only a selected few addresses?
- After UPDATE trigger - NEW and OLD column alias
- Prepopulated Core Data SQL store with new Write-Ahead Log (WAL) journaling
- MongoDB Journaling : Is the journal file used when the client request a non journal write and journaling is activated on Mongod
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Here is a sample of SMTP commands (from Wikipedia) that are used when sending a mail:
The real recipients of this email are specified by the command
RCPT TO. Then in theDATAcommand, which contains the content of your mail and some headers such asFrom,To,Subject,... You can specify whatever you want in those headers (includingFromandTo).So you put all the original recipients in the
Toheader. And you add only your journaling mailbox with theRCPT TOcommand. This will send the mail only to your journaling mail box, but all the recipients will be displayed in theToheader of the mail when you open it.