Using sendmail to send Outlook Meeting invitation


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Using sendmail to send Outlook Meeting invitation
# 1  
Old 03-12-2009
Using sendmail to send Outlook Meeting invitation

Hi,

I am using the following code to send mails to desired recipients about a batch job notification.

(
echo "From:" "Database Server"
echo "To:" ${MAILTO}
echo "Subject: ${SUBJECT}"
echo "MIME-Version: 1.0"
echo "Content-Type: text/html"
echo "Content-Disposition: inline"
cat $CONTENT
) | /usr/sbin/sendmail -t

I need to tweak this code so as to send Outlook meeting (appointment) invitaions to recepients rather than simple mails to them. Is there any option in sendmail to achieve this ? If so, how can I give the Start-End times of the meeting in sendmail ?

Thanks & regards,
Sabari Nath S
# 2  
Old 03-12-2009
sendmail can send anything SMTP/eMail based. The only problem is to send it in the correct format. Outlook uses for such appointments simple emails that have an attachment in the vCalendar format.
# 3  
Old 03-12-2009
Hi,

I was able to send mail from my AIX server to Outlook with a vcs file as attachment. But the mail does not come as an invite, instead it comes as a mail with an attachment and only upon opening the attachment, the recepients are able to see the meeting details. I was expecting the mail itself to come as a Meeting Invite. Hope you understoo what I meant.

Thanks,
SNS
# 4  
Old 03-12-2009
Try sending yourself a meeting invite and open the message with something else than Outlook (eg. Thunderbird), since with Outlook it's impossible to look at the source of a message.

With a bit of digging I found this
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Linux

Send mail to outlook

Hello Guys, I have a requirement to send an email to outlook from unix script. I have used the below stuff to send an email and it worked on machine A but not on machine B. Please find their versions. Machine A ) Linux xxx 2.4.9-e.40enterprise #1 SMP Thu Apr 8 16:43:01 EDT 2004 i686 unknown... (1 Reply)
Discussion started by: srikanthbiradar
1 Replies

2. UNIX for Advanced & Expert Users

How can I send a mail from my outlook or other mail accounts to UNIX server?

Hi all, I want to send a mail for my business needs from outlook account to an unix server (HP-UX) but I don't send any mail. While I can send from the unix server to my outlook account, I can't send from outlook to unix. How can I achieve this ? How can I send a mail from my outlook or other... (2 Replies)
Discussion started by: igelegin
2 Replies

3. Shell Programming and Scripting

How i can send a mail from outlook to an UNIX server?

Hi all, I want to send a mail for my business needs from outlook account to an unix server (HP-UX) but I don't send any mail. While I can sent from the unix server to my outlook account,I can't send from outlook to unix. How can I achieve this ? How can I send a mail from my outlook or other... (5 Replies)
Discussion started by: igelegin
5 Replies

4. Shell Programming and Scripting

How to send a file in email from Solaris box to MS outlook 2010

Hi I have input file in solaris machine and my question is..,how to send email that input file to Microsoft outlook 2010 in excel /xls format. (5 Replies)
Discussion started by: buzzme
5 Replies

5. UNIX and Linux Applications

Send email from outlook to server

Hi, I am sending an email from Microsoft Outlook 2010 (microsoft exchange) to a unix server. I am not receiving the email in server but I am getting the following error in outlook. Your message: From: x@y.com Subject: Could not be delivered because the domain name was... (4 Replies)
Discussion started by: Neethu
4 Replies

6. Shell Programming and Scripting

Outlook is getting hanged - sendmail

Hi, Problem with Sendmail When I receive the mail in my outlook, (sent using sendmail ) , Outlook is not working properly( its getting hanged).I am using the script which is available in this forum. The following are the headers that are getting generated . Sendmail is running on SunOS... (5 Replies)
Discussion started by: Srini75
5 Replies

7. UNIX for Advanced & Expert Users

Unable to send eMail from a UNIX-Host ( using mailx ) to a Outlook-email-addres(Win)

Hi A) I am able to send eMail using mailx from a UNIX ( solaris 8 ) host to my Outlook-email-ID : FName.Surname@Citigroup.com ( This is NOT my actual -eMail-ID). But in Outlook the "From :" eMail address is displayed as " usr1@unix-host1.unregistered.email.citicorp.com " .i.e the words... (2 Replies)
Discussion started by: Vetrivela
2 Replies

8. UNIX for Dummies Questions & Answers

using mailx to send a log file to my outlook e-mail account

I like to use mailx -s to send an entire xxxxx.log to my outlook e-mail account. Any help will be appreciated. Thanks. (6 Replies)
Discussion started by: simt
6 Replies
Login or Register to Ask a Question