New Excel Forum

This forum has been moved to TeachExcel.com

Ask all future questions in the New Excel Forum.

ExcelKey

[SOLVED] calling novel groupwise email with macro

Macros, VBA, Excel Automation, etc.

[SOLVED] calling novel groupwise email with macro

Postby rjardine1 » Tue Sep 04, 2012 9:44 am

I have seen a few examples of calling outlook email with a macro.
I have tryed to addapt the code for groupwise but I am obviously missing something.
I do have a code which calls a generic email and that does call the groupwise but I have not been able to adapt the auto fill in of the subject: and send to : lines.
Code: Select all
' send copy to communications by email

  Application.Dialogs(xlDialogSendMail).Show

This code opens groupwise and attaches the open excel file but all the other fill ins to send the email are blank.

Russ
  • 0

Last edited by rjardine1 on Mon Jan 07, 2013 6:44 pm, edited 1 time in total.
rjardine1
Regular
 
Posts: 37
Joined: May 20, 2012
Reputation: 0
Excel Version: 2007

Re: calling novel groupwise email with macro

Postby charles » Tue Sep 04, 2012 12:28 pm

Russ,

Welcome to the forum.
I'm not sure what you mean by "Group wise".
And too I'm not too versed with sending email, but check this site.
It may help you. If not come on back and we'll do what we can for you.

http://www.rondebruin.nl/tips.htm
  • 0

There are other ways too do this but...

Be kind let us know if you posted somewhere else!



Charles
charles
Excel Badass
 
Posts: 632
Joined: Dec 10, 2011
Location: Mississippi
Reputation: 1
Excel Version: Excel 2003, 2007 and Mac 2011

Re: calling novel groupwise email with macro

Postby Sisyphus » Tue Sep 04, 2012 12:34 pm

Hello Russ,
I don't have any experience in what you are trying to do, but I would understand some one arguing that there is no need for the capability to send group mails by VBA.
The argument would run along the lines that a group is the result of a query. Using code it might be easier to simulate the query than to access its result.
I imagine a list of contacts. This list would have a column for "Group", and in that column the group name would be recorded against each member of a group, perhaps an array of groups if some one is a member of many groups. So, you might recover the group members by filtering the list of contacts by their Group property.
I don't know how much of this is just phantasy, but perhaps the idea guides your efforts away from where you are now stuck.
  • 0

Have a great day! :D

Sisyphus
I do this for "honour and country" - much less of the latter, actually.
If I helped you, award points, plenty of them.
If I bored you, deduct points for being too long-winded. (I know, :lol)
Sisyphus
Former Moderator
 
Posts: 4454
Joined: Dec 7, 2011
Location: Shanghai
Reputation: 203
Excel Version: 2010

Re: calling novel groupwise email with macro

Postby charles » Tue Sep 04, 2012 12:45 pm

Hi,

As Sisyphus' suggested the "Array" this may help

Code: Select all
Application.Dialogs(xlDialogSendMail).Show _
arg1:=Array("dklann@lineone.net", "jdoe@acme.com", "someoneelse@somewhere.com"), _
arg2:="test email"
  • 0

There are other ways too do this but...

Be kind let us know if you posted somewhere else!



Charles
charles
Excel Badass
 
Posts: 632
Joined: Dec 10, 2011
Location: Mississippi
Reputation: 1
Excel Version: Excel 2003, 2007 and Mac 2011

Re: calling novel groupwise email with macro

Postby rjardine1 » Tue Sep 04, 2012 8:43 pm

I will give your code a try, Novell Groupwise is a very widely used email system in large corporations in Canada and USA.



Novell GroupWise
GroupWise collaboration software is a premier collaboration tool for large enterprise. Look no further than Novell for your collaboration software.
www.novell.com/products/groupwise/

I just found there forum so I hope I get some help there. Of course I will be back because the people on this site are a great help with so many questions.
Russ
  • 0

rjardine1
Regular
 
Posts: 37
Joined: May 20, 2012
Reputation: 0
Excel Version: 2007

Re: calling novel groupwise email with macro

Postby lion8538 » Tue Sep 04, 2012 9:54 pm

The art of being wise is the art of knowing what to overlook!
  • 0

lion8538
Rookie
 
Posts: 2
Joined: Sep 3, 2012
Location: 1 SAMUEL STREET,LEICESTER,LE1 3RU,ENGLAND
Reputation: 0
Excel Version: 2003

Re: calling novel groupwise email with macro

Postby rjardine1 » Mon Jan 07, 2013 6:43 pm

I solved the problem with this code

Code: Select all
 Application.Dialogs(xlDialogSendMail).Show _
arg1:="first address@place.com" & ";" & "second address@place.com" & ";" & "third address@place.com", _
arg2:="North attributes" & Now()
  • 0

rjardine1
Regular
 
Posts: 37
Joined: May 20, 2012
Reputation: 0
Excel Version: 2007


Return to Macros and VBA Questions

Who is online

Users browsing this forum: No registered users and 103 guests