Save Dialog

JohanKotze

Senior Member
OS Version(s)
  1. Windows
Outlook version
Outlook 2019 64-bit
Email Account
IMAP
Operating system::    Windows 10 pro
Outlook version:     2021
Email type or host:    IMAP

Hi Diane
I am using your VBA code to save send messages to clients directories via a save dialog box.

I recently started to a sms messaging service using my email client (outlook) to send a sms to my clients via a gateway provided by my service provider

So I add Call SMSToClient to your VBA code. Now I get 2 save dialog boxes, 1 for sending the sms and the other for the actual email.

The sms is merely to notify the client that we send him/her a document via email.

I don't want to save the sms email, is that even possible.
 
Are you using this macro ?

Those macros use itemsend, so everything in the outbox is saved. The SMS use the standard email form and your email address? Is the to address always the phone number (no @ sign?) or does it have any other things we can use an If statement on?

Something like this - if there is no @ sign for the sms

If instr(1, Item.To, "@") then
If TypeName(objFolder) <> "Nothing" And _
IsInDefaultStore(objFolder) Then
Set Item.SaveSentMessageFolder = objFolder
End If
end if
 
Are you using this macro ?

Those macros use itemsend, so everything in the outbox is saved. The SMS use the standard email form and your email address? Is the to address always the phone number (no @ sign?) or does it have any other things we can use an If statement on?

Something like this - if there is no @ sign for the sms

If instr(1, Item.To, "@") then
If TypeName(objFolder) <> "Nothing" And _
IsInDefaultStore(objFolder) Then
Set Item.SaveSentMessageFolder = objFolder
End If
end if
Diane it will always be a number in the subject line (me.txtMobileNr) like +27826583465
As I call in from a hidden form is there a way that I can incorporate within your code. Here is the code in the sms form

Sub cmdSMSPolNoticeE_Click()
'Set the Outlook controls to create a new message
Set OutlookApp = CreateObject("Outlook.Application")
Set OutlookMail = OutlookApp.CreateItem(0)

If Nz(Me.txtMobileNr, "") = "" Then
MsgBox "Cell number required. Go back to database and enter a cell number", vbOKOnly + vbCritical, "Number Required"
Me.txtMobileNr.SetFocus
Exit Sub
End If

'Set the FROM field
OutlookMail.SentOnBehalfOfName = strFrom
'
'Set the TO field
OutlookMail.To = "johankotzebrok_sms@smsgw1.gsm.co.za"
'
'Set the CC field
OutlookMail.CC = strCCAddress
'
'Set the SUBJECT field
OutlookMail.Subject = Me.txtMobileNr
'
'Set the BODY field
OutlookMail.HTMLBody = "Hi" & " " & Me.txtRecipient & ", " & "we have emailed you your updated policy schedule." & "<BR>" & _
"Regards" & "<BR>" & _
"Johan Kotze Brokers Team." & "<BR>" & _
"DON'T REPLAY TO THIS SMS." & "<BR>" & _
"THANK YOU FOR YOUR SUPPORT."

'Show the message to the user
OutlookMail.Send
End Sub
 
Similar threads
Thread starter Title Forum Replies Date
moron save as & file location dialog box popup Outlook VBA and Custom Forms 2
J Save As dialog box on screen Outlook VBA and Custom Forms 1
M Outlook2007 and VSTO, handle the Click on the Save Button in the IPM.Note dialog HOWTO? Outlook VBA and Custom Forms 4
M Save as Adobe PDF misses inline graphics Using Outlook 0
Sandgroper48 Save vbaProject Outlook VBA and Custom Forms 2
J Outlook 2019 Pick the Folder Location to save send emails Outlook VBA and Custom Forms 0
boblewis Technical Issue with Custom Form - Save to Drafts Not Syncing Outlook VBA and Custom Forms 1
Rob Can't save MailItem because the message changed in .pst file Outlook VBA and Custom Forms 0
G Save emails as msg file from Outlook Web AddIn (Office JS) Outlook VBA and Custom Forms 0
E Outlook 365 Save Selected Email Message as .msg File - oMail.Delete not working when SEARCH Outlook VBA and Custom Forms 0
E Save Selected Email Message as .msg File - digitally sign email doesn't works Outlook VBA and Custom Forms 1
M Outlook Macro to save as Email with a file name format : Date_Timestamp_Sender initial_Email subject Outlook VBA and Custom Forms 0
C Outlook 365 Copy/Save Emails in Folder Outside Outlook to Show Date Sender Recipient Subject in Header Using Outlook 0
W Create a Quick Step or VBA to SAVE AS PDF in G:|Data|Client File Outlook VBA and Custom Forms 1
C Outlook (desktop app for Microsoft365) restarts every time I save my VBA? Using Outlook 1
D VBA Macro to Print and Save email to network location Outlook VBA and Custom Forms 1
N VBA Macro To Save Emails Outlook VBA and Custom Forms 1
N Save emails within a certain date range to network drive Outlook VBA and Custom Forms 0
T Outlook 365 Move newly created tasks automatically on save. Outlook VBA and Custom Forms 1
G Save attachment run a script rule Outlook VBA and Custom Forms 0
N Save Selected Email Message as .msg File Outlook VBA and Custom Forms 12
G Save and Rename Outlook Email Attachments Outlook VBA and Custom Forms 0
G VBA to save selected Outlook msg with new name in selected network Windows folder Outlook VBA and Custom Forms 1
D Outlook 2016 64bit, Cannot Save in 'HTML', format Using Outlook 1
N Save selected messages VBA does not save replies and/or messages that contain : in subject Outlook VBA and Custom Forms 1
L Macro to add Date & Time etc to "drag to save" e-mails Outlook VBA and Custom Forms 17
S save attachment with date & time mentioned inside the file Outlook VBA and Custom Forms 0
S Add VBA save code Using Outlook 0
A Edit attachment Save and Reply Outlook VBA and Custom Forms 0
S Outlook (2016 32bit; Gmail IMAP) - Save sent message to Outllook Folder Outlook VBA and Custom Forms 0
P Outlook pst file is too huge with POP3. How to save more space? Using Outlook 4
D Prevent popup of "Do you want to save changes?" when closing after opening an appointment to view Outlook VBA and Custom Forms 2
A Unable to save recurring Meeting to Documents folder due to error Using Outlook 2
M Outlook 2013 Script Assistance - Save Opened Link with Subject Added Outlook VBA and Custom Forms 1
R Use an ItemAdd to Save Attachments on Arrival Outlook VBA and Custom Forms 0
W Outlook Calendar does not save view any longer! Using Outlook 3
S automate save the .xlxs file to share Network Using Outlook 1
S save email from excel Outlook VBA and Custom Forms 1
Y Open and Save Hyperlink Files in multiple emails Outlook VBA and Custom Forms 9
9 Outlook 2016 How to save an Outlook attachment to a specific folder then delete the email it came from? Using Outlook 1
O Save attachments using hotkey without changing attributes Outlook VBA and Custom Forms 1
geofferyh Cannot get Macro to SAVE more than one message attachment??? Outlook VBA and Custom Forms 5
N Open & Save VBAProject.Otm using VBA Code Outlook VBA and Custom Forms 1
R VBA | Chosing path to save file Outlook VBA and Custom Forms 1
W Save and rename outlook email attachments to include domain name & date received Outlook VBA and Custom Forms 4
V Change default default save location to Quick Access Using Outlook 1
W Save Outlook attachment in network folder and rename to current date and time Outlook VBA and Custom Forms 18
C Change default "Save Sent Item To" folder Outlook VBA and Custom Forms 9
C Outlook - cannot save subject line changes Using Outlook 2
J Save E-mail attachments in a specific folder Outlook VBA and Custom Forms 0

Similar threads

Back
Top