Questions tagged [bcc]

A BCC (blind carbon copy; also Bcc) is a copy of an email message sent to a recipient whose email address does not appear in the message.

In the context of correspondence, blind carbon copy (abbreviated Bcc:) refers to the practice of sending a message to multiple recipients in a way that conceals the fact that there may be additional addresses from the complete list of recipients. This concept originally applied to paper correspondence and now also applies to email.
This is in contrast to To and CC recipients, whose addresses do appear in the respective header lines. Every recipient of the message can see all the To and CC recipients, but does not know about BCC recipients.

187 questions
0
votes
2 answers

Sending mail with Phpmailer, BCC only, hiding TO header field

I'm using Phpmailer to send an email to multiple accounts using BCC. I don't want "To:" field to be seen among the headers, but I think it is mandatory, because if I omit it I got this error: Email error: You must provide at least one recipient…
Yuri Refolo
  • 245
  • 9
  • 17
0
votes
1 answer

Outlook BCC not resolving names quick enough?

My ultimate goal is to find a way to flag an email I am about to send with a reminder for both the person I am sending the email to and myself at today's date and time plus x amount of days. I've been able to do this when generating new mail items…
0
votes
1 answer

In ATG, how can I disallow the creation of a Repository Item of a super type while allowing creation of each subtype in the BCC?

Let's say I have a content repository with an item descriptor, say TypeA. It has two subtypes TypeX an TypeY In the BCC, I want authors to be able to create content of type TypeX and TypeY, but not TypeA.
Vihung
  • 12,947
  • 16
  • 64
  • 90
0
votes
1 answer

wysiwyg editor deletes code when switching from code to visual view ATG BCC

My editor deletes the below code: i had the project to be delivered last friday and when finally i was implementing it in bcc, i noticed that the editor deleted the code, so i made…
master Nixe
  • 180
  • 1
  • 18
0
votes
0 answers

Yclas phpmail, BCC & REPLY TO

Can someone help/tell me how to get yclas phpmail to BBC to a mailadres and ad a REPLY TO? its a marketplace script open source. Thanks for your input, after 3 days i'm getting no results, i'm not a expert. The phpmail file is:
0
votes
1 answer

Targeting and Segmentation BCC Missing Parent

When attempting to add a New Folder in the BCC under 'Targeting and Segmentation' there is no Parent to select. Where in the ATG/BCC do we set a Parent? Is this a configuration setting in a property file? Is there a missing module?
Joe S
  • 1
0
votes
1 answer

Use BCC in google script without placing e-mailadresses in the code itself

I need to sent an e-mail to a group of people. Therefor I have a list of e-mailadresses set up in Spreadsheet, the Sheetname = Contacts. The Weeknr-sheet is used to generate the required weeknumber in the subject. I want to send this e-mail to…
Bart
  • 1
  • 1
0
votes
1 answer

php mail does not work with no-gmail address

I have part of my project when my clients will reseive mail after so many actions, when I testing my mail function, I have problem when the adresse is to "gmail" , I reseive the mail, but when the mail is no-gmail, the mail not reseived !!! :( this…
0
votes
1 answer

BCC mail is not going - All other in the code like Subject & To addresses are working fine

In one of my asp.net pages (C#), I am using a SMTP mail option. Everything works fine in the mail such as subject, To addresses, etc., except for the BCC to a default gmail address (I use this to verify how the mail end up at others…
Prem kumar
  • 21
  • 6
0
votes
1 answer

Automatically Send BCCs to Mailbox Sent From

We've got multiple users using an existing mailbox on Outlook. Everyone who sends from the mailbox recieves the "sent items" in their own personal mailbox. I've looked in rules and cannot find anything to have the sent items appear in the group…
RhaegoT
  • 63
  • 4
0
votes
2 answers

Last recipient set using office interop always ends up in TO field in outlook2010 even if the type is BCC or CC

I am having problems setting the BCC field in Outlook 2010. This is my situation (using Microsoft.Office.Interop.Outlook): string bcc = "example@example.com"; Recipient recipient = mailItem.Recipients.Add(bcc); // Add the recipient…
johgan
  • 81
  • 3
  • 7
0
votes
0 answers

Send BCC with PHP mail()

This is my code: ' . "\r\n"; $headers .= 'Bcc: me@example.com' .…
user6792802
0
votes
0 answers

Issue with FCKEditor in ATG Merchandising

I have a problem. In BCC ATG 11.2 I've configured default HTML asset editor for Big String Plain Text according this article http://obed33.blogspot.com.by/2015/04/how-to-change-wysiwyg-editor-on-bcc.html. But when I am trying edit big string…
0
votes
1 answer

Does anyone know how to bcc in R?

library("mailR") sender <- "sender@gmail.com" bcc<- c("BCC Recipient ","BCC Recipient") send.mail(from = sender, bcc<- c("BCC Recipient ","BCC…
bmerv
  • 33
  • 6
0
votes
1 answer

How can I add a BCC to my code

Mail::send(['html' => 'emailtemplate'], $dataCustomer, function ($m) use ($input) { $m->from('quotes@email.net', 'Mr. Foot'); $m->to($_POST['email'])->subject('Mr Foot Thanks You');