How to add CC and BCC while sending mails using python

sonam Kumari jhasonam05 at gmail.com
Tue Jun 20 03:49:21 EDT 2023


On Friday, November 30, 2012 at 7:00:27 AM UTC+5:30, ake... at gmail.com wrote:
> On Tuesday, September 30, 2008 8:00:16 AM UTC-8, Bernhard Walle wrote: 
> > Hi, 
> > 
> > * cindy jones [2008-09-30 19:57]: 
> > > 
> > > Can someone tel me how to add cc's and bcc's while sending mails using 
> > > python 
> > 
> > Following (tested) snippet should help: 
> > 
> > ------------------ 8< ------------------------------ 
> > from smtplib import SMTP 
> > from email.mime.image import MIMEImage 
> > from email.mime.text import MIMEText 
> > from email.mime.multipart import MIMEMultipart 
> > 
> > to = 'to_ad... at example.invalid' 
> > cc = 'cc_ad... at example.invalid' 
> > bcc = 'bcc_a... at example.invalid' 
> > 
> > msg = MIMEMultipart() 
> > msg['To'] = to 
> > msg['Cc'] = cc 
> > msg['From'] = 'bern... at bwalle.de' 
> > msg['Subject'] = 'Test' 
> > text = MIMEText('Das ist ein Test') 
> > text.add_header("Content-Disposition", "inline") 
> > msg.attach(text) 
> > 
> > s = SMTP('test.smtp.relay') 
> > s.sendmail(msg['From'], [to, cc, bcc], msg.as_string()) 
> > s.quit() 
> > ------------------ >8 ------------------------------ 
> > 
> > 
> > Regards, 
> > Bernhard
> Hello Bernhard, 
> 
> I've tried the above code and the bcc address does not receive the message, on the To & CC addresses receive it. 
> 
> Here are snippets from my code, perhaps something will stand out to you? 
> 
> to = 'e... at domain.gov' 
> cc = 'e... at gmailmail.com' 
> bcc = 'e... at home.net'
> msg = MIMEMultipart() 
> msg['To'] = to 
> msg['Cc'] = cc
> msg['Subject'] = 'My Subject text here' 
> msg['From'] = 'eds... at domain.gov' 
> 
> smtp = SMTP("smtpserver") 
> smtp.ehlo() 
> smtp.sendmail(msg['From'], [to, cc, bcc], msg.as_string()) 
> 
> Thanks in advance..hope you're still out there!! 
> ~Ed



I tried this but my mail gets sent only in to but not in cc. Can anyone help?


More information about the Python-list mailing list