Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 175
Default using variable in subject when send mail

Hi
I have this
With Destwb
.SaveAs TempFilePath & TempFileName & FileExtStr, _
FileFormat:=FileFormatNum
'On Error Resume Next
.SendMail ", _
"hej"
On Error GoTo 0
.Close SaveChanges:=False
End With
But if i use this:
..SendMail ", _
"hej" & variable

I get an error ?

Alvin


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8,520
Default using variable in subject when send mail

Dear Alvin

Use .SendMail Subject:= .........like below

Dim strSubject As String
strSubject = "Test Email"

ActiveWorkbook.SendMail ", _
Subject:=strSubject

If this post helps click Yes
---------------
Jacob Skaria


"alvin Kuiper" wrote:

Hi
I have this
With Destwb
.SaveAs TempFilePath & TempFileName & FileExtStr, _
FileFormat:=FileFormatNum
'On Error Resume Next
.SendMail ", _
"hej"
On Error GoTo 0
.Close SaveChanges:=False
End With
But if i use this:
.SendMail ", _
"hej" & variable

I get an error ?

Alvin


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 175
Default using variable in subject when send mail

Yes yes yes
Thanks
alvin


"Jacob Skaria" skrev:

Dear Alvin

Use .SendMail Subject:= .........like below

Dim strSubject As String
strSubject = "Test Email"

ActiveWorkbook.SendMail ", _
Subject:=strSubject

If this post helps click Yes
---------------
Jacob Skaria


"alvin Kuiper" wrote:

Hi
I have this
With Destwb
.SaveAs TempFilePath & TempFileName & FileExtStr, _
FileFormat:=FileFormatNum
'On Error Resume Next
.SendMail ", _
"hej"
On Error GoTo 0
.Close SaveChanges:=False
End With
But if i use this:
.SendMail ", _
"hej" & variable

I get an error ?

Alvin


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Bypass: A program is trying to send mail using Item.Send prompt Vick Excel Discussion (Misc queries) 1 June 25th 09 03:31 AM
Problem with .send from microsoft example for vba send mail from excel code Mark Stephens Excel Programming 3 March 6th 09 03:05 PM
e mail same body different subject Marilyn Excel Discussion (Misc queries) 3 May 11th 08 12:31 AM
How I auto send e-mail from excel with predefined subject and tex sdvl Excel Programming 5 February 17th 07 01:21 PM
Subject line in E-mail Ola Sigurdh Excel Programming 2 January 22nd 04 06:49 PM


All times are GMT +1. The time now is 08:52 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"