Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 Font's problem after run SP

Author  Topic 

uri dimant
Starting Member

16 Posts

Posted - 2001-08-19 : 09:36:28
Hello! I have problem with fonts in outlook express
i have job that run this SP

DECLARE @object int
DECLARE @hr int
EXEC @hr = sp_OACreate 'CDONTS.NewMail', @object OUT
EXEC @hr = sp_OASetProperty @object, 'From','Server'
EXEC @hr = sp_OASetProperty @object, 'Body', 'hier italiano'---------- my font
(hebrew)
EXEC @hr = sp_OASetProperty @object, 'Subject', 'subject '
EXEC @hr = sp_OASetProperty @object, 'To', 'someone@somewhere.com'
EXEC @hr = sp_OAMethod @object, 'Send', NULL
EXEC @hr = sp_OADestroy @object

i have got ????????????????????????
how can i set font(italiano) in order to see it in outlook



   

- Advertisement -