Author |
Message |
dave
Joined: 16 Jun 2003 Posts: 41
|
|
Email |
|
I want to send a email NOT a file every month. You templates only send files not a email message. I want to use SMTP not MAPI. Is this possible?
|
|
Tue Jan 31, 2006 1:09 pm |
|
 |
SysOp
Site Admin
Joined: 26 Nov 2006 Posts: 7955
|
|
Re: Email |
|
Sure. Take a look at MailSend topic in the on-line help. : I want to send a email NOT a file every month. You templates only send files : not a email message. I want to use SMTP not MAPI. Is this possible?
|
|
Tue Jan 31, 2006 1:59 pm |
|
 |
dave
Joined: 16 Jun 2003 Posts: 41
|
|
Re: Email |
|
: Sure. Take a look at MailSend topic in the on-line help. Ok I am unable to find the Syntax for this. Can you point me in the right direction?
|
|
Tue Jan 31, 2006 3:32 pm |
|
 |
SysOp
Site Admin
Joined: 26 Nov 2006 Posts: 7955
|
|
Re: Email |
|
While in the scheduler open help system by pressing F1; switch to index tab; type MailSend then OK; Read the topic; when done reading click the Example button on the help window button bar for a sample script. : Ok I am unable to find the Syntax for this. Can you point : me in the right direction?
|
|
Tue Jan 31, 2006 4:14 pm |
|
 |
dave
Joined: 16 Jun 2003 Posts: 41
|
|
Re: Email |
|
: While in the scheduler open help system by pressing F1; switch to index tab; : type MailSend then OK; Read the topic; when done reading click the Example : button on the help window button bar for a sample script. I got it to work however the format of the email is not correct. I need carriage returns in the email for formatting purposes. Is this possible?
|
|
Thu Feb 02, 2006 11:37 am |
|
 |
SysOp
Site Admin
Joined: 26 Nov 2006 Posts: 7955
|
|
Re: Email |
|
Sure, everything is possible here. Please explain what you are doing and where you need cariage returns. A code except would be also helpfull. : I got it to work however the format of the email is not correct. : I need carriage returns in the email for formatting purposes. : Is this possible?
|
|
Thu Feb 02, 2006 1:02 pm |
|
 |
dave
Joined: 16 Jun 2003 Posts: 41
|
|
Re: Email |
|
: Sure, everything is possible here. Please explain what you are doing and : where you need cariage returns. A code except would be also helpfull. Simply put in the message part of my script I want this format... MMC Associate, Please review your reports as they are now in WRDS. If you have any issues, please contact the WRDS Admin. Thank You. Regards, Admin Team
|
|
Thu Feb 02, 2006 3:29 pm |
|
 |
SysOp
Site Admin
Joined: 26 Nov 2006 Posts: 7955
|
|
Re: Email |
|
The easiest is doing this
MailsSend [other parameters here], "MMC Associate,\nPlease review your reports as they are now in WRDS. If you have any issues,\nplease contact the WRDS Admin. Thank You.\n\nRegards,\nAdmin Team"
|
|
Thu Feb 02, 2006 3:43 pm |
|
 |
dave
Joined: 16 Jun 2003 Posts: 41
|
|
Re: Email |
|
: The easiest is doing this : MailsSend [other parameters here], "MMC Associate,\nPlease review your : reports as they are now in WRDS. If you have any issues,\nplease contact : the WRDS Admin. Thank You.\n\nRegards,\nAdmin Team" ok 1 more question... In the message section am I able to put the date the job was run?
|
|
Fri Feb 03, 2006 12:59 pm |
|
 |
SysOp
Site Admin
Joined: 26 Nov 2006 Posts: 7955
|
|
Re: Email |
|
Sure. Insert @T"mm-dd-yyyy h:mm A/P" macro where required. If needed change the display format, for example MailsSend [other parameters here], "Time: @T"dddd, mmm d, yyyy h:mm am"\n\nMMC Associate,\nPlease review your reports as they are now in WRDS. If you have any issues,\nplease contact the WRDS Admin. Thank You.\n\nRegards,\nAdmin Team" : ok 1 more question... : In the message section am I able to put the date the job was run?
|
|
Fri Feb 03, 2006 1:46 pm |
|
 |
|