
1 个回答
Hi Katie,Setup the email to case and you will get the unique emial for creating the case. After that, you have to do the below setup and udpate that unique emial id in the below code snippet. Here’s how I did it. It’s pretty straight-forward, but took me longer than it should of. Hope this helps you out.Enable Developer Tab1. Open Outlook -> File -> Options -> Customize Ribbon -> Check the Developer Tab Create Macro1. Click on Developer Tab -> Click on Visual Basic Button
2. Double Click “Project1->Microsoft Outlook Objects->ThisOutlookSession”. Copy and Paste the following code into the code window.
Replace with the email that you want to Cc.Public Sub CcAndSend()
Dim mail As Outlook.MailItem
Set mail = Application.ActiveInspector.CurrentItem
mail.cc = mail.cc & ";<enter your email here>"
mail.Send
End Sub
Add Button to Ribbon1. Open a New Email Message -> Right Click on Ribbon -> Select Customize Ribbon
2. On the right, Click ‘New Mail Message’
3. Click ‘New Group’Please refer the below to know about the next steps. http://merfantz.com/blog/how-to-create-a-custom-button-to-send-an-email-from-outlook/Please contact us, if you need anyother support, http://www.merfantz.com/contactThanks.