Sending secret/personal message to particular cc in outlook - email

How can I send personal message to particular CC recipient(s) in outlook using C# so that other CC or or BCC or TO recipients can't able to view this personal message?

You will need to send a message to that recipient only.

Related

How to filter out auto-reply email by program

I have written a program to send emails to some recipients. After sending emails, some auto-reply emails will be returned. For example (no such recipients, mailbox is full, out of office etc).
Is there any information in the email (e.g. header) such that my program can filter out those auto-reply message?
Or any other mechanisums can be used to perform this task?
It is because my program only wants to get those actual-reply-by-recipients email, instead of auto-reply email.
Thanks.
Just setup a rule in the outgoing email account to move all received email to the trash? Assuming that you have an email box for the auto emails only.

Is there any technical difference between To and CC field in Email?

I Know the below things
To: is to the person who is receiving the email or taking action regarding email received
CC: is "Carbon Copy" which basically is for information so that they know the "To" person recieved the email and the action should be taken on the mail received
BCC: Blind Carbon Copy meaning that the others who recieved the email will not know that the BCC person got the email.
But My actual doubt is that,
Yahoo is blocking the mails received by there user, send using third party tools/servers. Here is more info from Yahoo
When a send a mail from some site in the below format
From: xxx#yahoo.com
To : yyy#yahoo.com
Sender is receiving error message.
But if i send in below format yahoo is accepting mails
Edit
From: xxx#yahoo.com
To : zzz#gmail.com
CC : yyy#yahoo.com
The error you mention is purely caused by a policy with Yahoo that states, from the link you give,
Your message wasn't delivered because Yahoo was unable to verify that
it came from a legitimate email sender.
So Yahoo's concern is to make sure spam is not sent using forged addresses unknowingly to the legitimate address owner.
If you include the CC field with the same address as From, it means at least the "maybe forged" sender is receiving a copy of the sent email. And that seems to be sufficient for Yahoo to accept to forward your email.

How can i handle bcc information with qmail?

I use qmail, and i send a mail with Thunderbird or Outlook. I can handle to, from, body, cc informations with qmail. But i cannot handle bcc. Because people say "qmail stripts out bcc." Some other people says "it is not job of qmail ( mta) , problem is from thunderbird (mua), it strips out bcc ". I don't know which is true.
So, How can i handle bcc information with qmail , Can you explain ?
Thanks.
You have to distinguish between receivers in header and in smtp-envelope. What you use as "To", "Cc" end up as header fields in your mail and are also used as envelope receipients in SMTP. The header fields are merely informational and are not used for message delivery. For "Bcc", your MUA (e.g. Thunderbird) does not include a header field in the mail, but only uses a corresponding envelope-receipient when handing over the message to the mail server. Adding Bcc information to the mail itself actually would defeat its purpose. Therefore, no information about this receiver is contained in the message itself. So qmail does not "strip out bcc" from the mail, since was never there, but it will be able to deliver the mail anyway.

Sending an email using javamail as if it were being sent from gmail

I'm developing a web application that uses javamail to send email messages and it works correctly.
The problem is that I don't get the email that I'm sending in the sent mail folder in the gmail account which I connect to, also I don't get bounced email as it happens if I try to send the email via gmail application.
I doubt this is due to security restrictions from javamail and cannot be done, as it would be much faster to get a possible spam list from an email server than doing it manually.but if it's for security reasons it would just be much better just not to bounce emails.
How can I use javamail as if sending the mails from gmail.com, getting the sent message in the sent mail folder and bounced mails in inbox folder?
The problem is that I don't get the email that I'm sending in the sent mail folder
Sending a mail via SMTP does not copy it to a sent folder automatically. Your sending application would have to make an IMAP connection after the SMTP connection and copy the message into the sent folder.
also I don't get bounced email
Make sure the Evelope Sender Address ("Return-Path") is set to the Gmail Adress you're using to send the messages.

How can I hide the 'to' field in the email sent by php mail

I am using php mail function to allow user to send me a mail from
website.
I am also allowing them to "cc" the email to themselves.
The whole purpose of making a "send us message" feature was not give our email to the users. But when the user selects the "cc" option, in the header of the mail that is sent to the user, the "to" field contains our primary email address.
How can I remove this, so that the users do not see our primary email address in the to field.
You could set the mailTo to an arbitrary mailbox at your domain "noreply#yourdomain.com" and add your company address in BCC?
But whatever reason you have for not exposing your email, imho it's quite unpolite :)
The e-mail message sent to you must have a To: field to be delivered correctly. You could emulate the CC feature by sending to separate e-mail messages to the office and to the client.