email signature does not show

0 Agios

Well-known Member
Joined
Feb 22, 2004
Messages
570
Office Version
  1. 365
I have this code that works, but does not produce the email signature in outlook. Any help would be apricated.


Private Sub CommandButton42_Click()
' ActiveSheet.Protect Password:="786", DrawingObjects:=False, Contents:=False, Scenarios:=False _
, AllowSorting:=True, AllowFiltering:=True, AllowUsingPivotTables:=True
Dim Email_Subject, Email_Send_From, Email_Send_To, _
Email_Cc, Email_Bcc, Email_Body As String
Dim Mail_Object, Mail_Single As Variant
Email_Subject = TextBox1.Value & " " & " Just following up on this bid. "

Email_Send_To = TextBox13.Text
Email_Cc = ""
'Email_Bcc = ""
On Error GoTo debugs
Set Mail_Object = CreateObject("Outlook.Application")
Set Mail_Single = Mail_Object.CreateItem(0)
With Mail_Single
.Subject = Email_Subject
.To = Email_Send_To
.CC = Email_Cc
.BCC = Email_Bcc

.HTMLBody = " Do you have any updates on this project? We would love to do this job with you. Please let me know if you need anything on it, tweak the numbers to make this work etc. Thank you."




.Display
End With
debugs:
If Err.Description <> "" Then MsgBox Err.Description
'TextBox12.Value = "Chris send this job. " & Now()
'ActiveCell.Offset(0, 1).Cells.Interior.Color = RGB(249, 249, 165)
Unload Me
End Sub
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
it worked great, however there is one thing I would like to change instead of
"<H3><B> blablabla </B></H3>"

I need textbox1.text to show in bold
 
Upvote 0
Hi,

from what I know it´s not possible.. Are you able to do it manually in any new mail you create? Besides: any new mail in the Inbox of any program I worked with till now is shown as bold if unread but in normal after reading. So why should your mail`s subject be in bold no matter if it´s read or not?

Ciao,
Holger
 
Upvote 0

Forum statistics

Threads
1,214,875
Messages
6,122,037
Members
449,062
Latest member
mike575

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top