আমাদের কথা খুঁজে নিন

   

টিউন করার পূর্বে টেকটিউনস টিউন নীতিমালা জেনে ও বুঝে নিন

যারা outlook ব্যবহার করেন তাদের হয়তো কাজে লাগতে পারে। Auto BCC rule তৈরির জন্য প্রথমে outlook open করুন। নিচের ধাপসমূহ follow করুন।
1) Open outlook. 2) Press Alt+F11 to open visual basic. 3) Expand Project1, Microsoft Outlook Objects and double click on ThisOutlookSession. 4) Copy and paste below codes and save project. 5) Replace your desired mail address to harun24hr@hotmail.com
6) Enable all macroes from trust center settings. "Go to- File/Tool (Tool for prior version of office)--> Options--> Trust Center--> Trust Center Settings--> Macro Settings--> Enable All Macros (Select this option)-->ok
Codes:
Private Sub Application_ItemSend(ByVal Item As Object, _ Cancel As Boolean) Dim objRecip As Recipient Dim strMsg As String Dim res As Integer Dim strBcc As String On Error Resume Next
' #### USER OPTIONS #### ' address for Bcc -- must be SMTP address ' or resolvable to a name in the address book strBcc = "harun24hr@hotmail.com"
Set objRecip = Item.Recipients.Add(strBcc) objRecip.Type = olBCC If Not objRecip.Resolve Then strMsg = "Could not resolve the Bcc recipient. " & _ "Do you want to send the message?" res = MsgBox(strMsg, vbYesNo + vbDefaultButton1, _ "Could Not Resolve Bcc") If res = vbNo Then Cancel = True End If End If
Set objRecip = Nothing End Sub

তথ্য ও প্রযুক্তির ‍বিশাল ভান্ডারে নিজেকে এত ছোট মনে হয় যে, টিউন করার সাহস হয় না। তবু্ও করলাম। কোন ভুল হলে ক্ষমার দৃষ্টিতে দেখবেন।
Md. Harun-Or-Rashid, +8801785-675-102

সোর্স: http://www.techtunes.com.bd/     দেখা হয়েছে ১৩ বার

অনলাইনে ছড়িয়ে ছিটিয়ে থাকা কথা গুলোকেই সহজে জানবার সুবিধার জন্য একত্রিত করে আমাদের কথা । এখানে সংগৃহিত কথা গুলোর সত্ব (copyright) সম্পূর্ণভাবে সোর্স সাইটের লেখকের এবং আমাদের কথাতে প্রতিটা কথাতেই সোর্স সাইটের রেফারেন্স লিংক উধৃত আছে ।

প্রাসঙ্গিক আরো কথা
Related contents feature is in beta version.