Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
3k views

Sending BCC emails using a SMTP server?

I've had this noted down on some of my code for a while: /** * Add a BCC. * * Note that according to the conventions of the SMTP protocol all * addresses, including BCC addresses, are included in ...
5
votes
2answers
131 views

Linking sqlite3.obj emits uunsatisfied forward declarations errors

I have compiled SQLIte3 database engine from sqlite3.c with BCC 55 using the following command: bcc32.exe -jb -O2 -w- -K -c -6 -u- sqlite3.c The proper sqlite3.obj file was generated. But once I ...
4
votes
3answers
2k views

Python: how to store a draft email with BCC recipients to Exchange Server via IMAP?

I try to store a draft e-mail via IMAP to a folder running on MS Exchange. Everything ok, except that Bcc recipients don't get shown in the draft message stored on the server. Bcc recipients also ...
3
votes
4answers
251 views

How to debug a traceless crash

During development of out application we have in special encountered a really nasty bug. The symptom is quite simply that the process disappears. The logs just end abruptly, no crash dumps or anything ...
3
votes
2answers
2k views

Ruby Net::SMTP - Send email with bcc: recipients

I would like to use Ruby Net::SMTP to send email. The routine send_message( msgstr, from_addr, *to_addrs ) works well in my code for sending email, but it is not clear from this API how to send ...
3
votes
5answers
209 views

Can objects be unwinded before they are created on stack?

We have been debugging a strange case for some days now, and have somewhat isolated the bug, but it still doesn't make any sense. Perhaps anyone here can give me a clue about what is going on. The ...
2
votes
4answers
61 views

will adding bcc to php mail save resources?

I am writing an admin notification sytem for my custom CMS. So I am planning of adding a bcc to all the users of sites. So here are my questions? Is bcc better than the foreach($user){mail()} ...
2
votes
1answer
159 views

Bcc Field in SMTP [ showing/not showing ] problem

I'm trying to use python's smtplib to send, via gmail, an email with bcc addresses. I use this code: #imports etc... fromAddr = sender@origin.com to = [ recpt1@destinationTo.com ] cc = [ ...
2
votes
2answers
92 views

For non-customized bulk email, is it better to use the BCC field, or generate a separate email with To header for each recipient?

I'm generating a bulk mailing each day for users who want to receive the daily deals. I can either send a separate physical email with each user specified on their own unique To header, or I can send ...
2
votes
5answers
365 views

Does BCC send PHP mail() to a mailing list differently than TOs?

I'm improving PHP mailing list code that uses mail() in a loop while iterating through all subscribers. The script used to display a "Maximum execution time of 30 seconds exceeded" error which I ...
2
votes
5answers
3k views

Sending Mail via SMTP in C# using BCC without TO

I am trying to use the System.Net.Mail.MailMessage class in C# to create an email that is sent to a list of email addresses all via BCC. I do not want to include a TO address, but it seems that I must ...
1
vote
0answers
95 views

PHP newsletter - BCC & unsubscribing

I had developed a small newsletter system for a client that used a small script to send a bunch of emails out with attachments. It used the server the website was hosted on to send the emails. It was ...
1
vote
0answers
154 views

Block Check Character

Hello Faced with this problem is new byte [] {0x04, 0x30, 0x02, 0x44, 0x03} Need to define BCc How can I do? Thank you in advance I try this function, but it is not working private static byte ...
1
vote
3answers
332 views

Using MFMailComposeViewController, is it possible to BCC the default mail account?

I believe that the iOS SDK provides no access to the details of the default mail account (for good reason), but is there any other way to somehow setup MFMailComposeViewController to prefill the BCC ...
1
vote
8answers
693 views

Is it a good idea to trust BCC to not reveal other people's addresses?

I'm using PHPMailer to send emails with SMTP from my script. The emails in question are actually cell numbers utilizing email-to-SMS gateways. Now, ideally I want to build up a big BCC list to send ...
1
vote
2answers
1k views

Outlook VBA to BCC emails sent not working in Outlook 2007

Inserted code in ItemSend and saved the ThisOutlookSession module. It worked once and no longer works. Before anyone asks; it was saved as BVaproject.OTM and is still there when I open the module ...
1
vote
3answers
812 views

Why is the calculated checksum not matching the BCC sent over the serial port?

I've got a little application written in C# that listens on a SerialPort for information to come in. The information comes in as: STX + data + ETX + BCC. We then calculate the BCC of the ...
0
votes
1answer
15 views

How to Set a Outlook rule to classify email received by BCC?

I am in diff distribution list like A , B , C There are a lot of email BCC to A , B ,C I want to setup rules that "Move all mail bcc to specific Distribution list to specific folder " It seems ...
0
votes
0answers
52 views

Hide email address from gmail if BCC

I'm finalizing my app. In this app I can send email to people. I want to send in BCC to another email address (for statistics purpose) but when I add this email address the user can see it and ...
0
votes
0answers
48 views

how to force bcc compiler to compile for 32 bit from win7 64 bit [closed]

I am running win7 ultimate 64 bit OS. Deploying my project compiled in 64 bit os will not run in windows xp pro :( In project options i did not find it. Is there any possibility to force bcc ...
0
votes
0answers
37 views

Exim: Forward Based on Recipient in bcc

Currently I am filtering incoming mails by a .forward in the following way: if $header_to: matches "(office|info)@domain.com" then save Maildir/.office/ endif if $header_to: matches ...
0
votes
1answer
80 views

C++ microkernel cout problem

Ok, I'm working on my Operating Systems assignment. I need to write a microkernel which is able to do some basic stuff with threads, semaphores, events, etc. BCC 3.1 is imitating my system ...
0
votes
1answer
656 views

PHP SMTP BCC, not going through

Recipients named in the BCC/CC (in the headers) are not received. I've found a couple of posts with similar questions, no answers... The code is below, the question is: "Have any of you had similar ...
0
votes
2answers
168 views

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 = ...
0
votes
1answer
128 views

PHP email and bcc question

I have a list of emails. I want to email all of them the same email. So I am going to use the BCC field. However, I want the TO field to show the email of whoever receives it. How do I do this?
0
votes
1answer
445 views

Send mail with python using bcc

I'm working with django, i need send a mail to many emails, i want to do this with a high level library like python-mailer, but i need use bcc field, any suggestions?
0
votes
1answer
93 views

Why do I get an amibguity error when I compile from the command line, but not from the IDE?

I am trying to compile a rather large project with Borland C++ Builder 5.5. The project compiles in the IDE, but is much too slow. However, when I compile with the command line I get an ambiguity ...
0
votes
2answers
1k views

Why can't the Borland C++ Builder 5 command line compiler find my files?

I have a bcb5 project group that I am trying to compile with make.exe. Make seems to run fine and generates a call to bcc32.exe, but that fails. Here is the call to bcc32.exe followed by the error. ...
-1
votes
3answers
135 views

sending mails using MailMessage class - Limitations OF BCC and CC counts?

i have a list (1,000,000 emails addresses) of my customers and i want to send them an specific email (all of those emails are the same) using MailMessage calss. is there any limitation(s) about ...
-1
votes
2answers
239 views

How to send BCC via MFMailComposeViewController in iPhone SDK?

One part of my app sends an e-mail with an attachment. I'm using the MFMailComposeViewController class, and all is well. I just would like to know if I can send a stealth BCC message to myself, just ...