RE: $$Excel-Macros$$ Sent Mailer data

2012-01-31 Thread Rajan_Verma
See if it helps:

 

Sub SendMail()

Application.Dialogs(xlDialogSendMail).Show

End sub

 

Rajan.

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Anjul Porwal
Sent: Jan/Tue/2012 12:40
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Sent Mailer data

 

hi.

 

attach data for mailer. we want macro for sent data for anil.

 

Regards

Anjul.

 

-- 
FORUM RULES (986+ members already BANNED for violation)
 
1) Use concise, accurate thread titles. Poor thread titles, like Please
Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will
not get quick attention or may not be answered.
 
2) Don't post a question in the thread of another member.
 
3) Don't post questions regarding breaking or bypassing any security
measure.
 
4) Acknowledge the responses you receive, good or bad.
 
5) Cross-promotion of, or links to, forums competitive to this forum in
signatures are prohibited. 
 
NOTE : Don't ever post personal or confidential data in a workbook. Forum
owners and members are not responsible for any loss.
 

--
To post to this group, send email to excel-macros@googlegroups.com

-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


RE: $$Excel-Macros$$ Sent Mailer data

2012-01-30 Thread Rajan_Verma
Can you send the output of mail .. 

What will the format?

 

Rajan.

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Anjul Porwal
Sent: Jan/Tue/2012 12:40
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Sent Mailer data

 

hi.

 

attach data for mailer. we want macro for sent data for anil.

 

Regards

Anjul.

 

-- 
FORUM RULES (986+ members already BANNED for violation)
 
1) Use concise, accurate thread titles. Poor thread titles, like Please
Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will
not get quick attention or may not be answered.
 
2) Don't post a question in the thread of another member.
 
3) Don't post questions regarding breaking or bypassing any security
measure.
 
4) Acknowledge the responses you receive, good or bad.
 
5) Cross-promotion of, or links to, forums competitive to this forum in
signatures are prohibited. 
 
NOTE : Don't ever post personal or confidential data in a workbook. Forum
owners and members are not responsible for any loss.
 

--
To post to this group, send email to excel-macros@googlegroups.com

-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


Re: $$Excel-Macros$$ Sent Mailer data

2012-01-30 Thread Anjul Porwal
Thanks noorain...

Regards
anjul

On Tue, Jan 31, 2012 at 12:51 PM, NOORAIN ANSARI
noorain.ans...@gmail.comwrote:

 Dear Anjul,

 Please try it and change email Id as per your requiremrnt..

 Sub maildata()
 Dim a As Workbook
 Dim data As Range
 Set data = ThisWorkbook.Sheets(1).UsedRange
 data.Copy
 Set a = Workbooks.Add
 a.Sheets(1).Cells(1, 1).Select
 ActiveSheet.Paste
 MsgBox ThisWorkbook.Path
 a.SaveAs ThisWorkbook.Path  Automatic_ Email.xls
 a.Close
 Dim olApp As Outlook.Application
 Dim olMail As MailItem
 Dim SigString As String
 Dim Signature As String

 Application.ScreenUpdating = False
 Set olApp = New Outlook.Application
 Set olMail = olApp.CreateItem(olMailItem)
 With olMail
 .To = noorain.ans...@gmail.com
 .CC = noorain.ans...@one97.net
  .Subject = Incoming Status!
 .Body = Messages   vbCrLf  vbCrLf   Thanks   vbCrLf  Regards 
 vbCrLf   Noorain Ansari
 .Attachments.Add ThisWorkbook.Path  Automatic_ Email.xls
 .Send
  End With
 Set olMail = Nothing
 'Kill ThisWorkbook.Path  \abc1.xls
 End Sub

 --
 Thanks  regards,
 Noorain Ansari
  *http://excelmacroworld.blogspot.com/*http://excelmacroworld.blogspot.com/
 *http://noorain-ansari.blogspot.com/*http://noorain-ansari.blogspot.com/


 On Tue, Jan 31, 2012 at 12:40 PM, Anjul Porwal porwalan...@gmail.comwrote:

 hi.

 attach data for mailer. we want macro for sent data for anil.

 Regards
 Anjul.

 --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com




  --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com