Click here to Skip to main content
15,892,927 members

Comments by Member 12561559 (Top 49 by date)

Member 12561559 2-Jun-23 6:30am View    
tried that, didnt work in the telerik component. Found the solution below - sods law I find it shortly after posting here. But might be useful for others hitting the same bug.
Member 12561559 2-Jun-23 6:30am View    
Found out how to go about fixing it.
I'll explain the solution in a moment, but this is how I found it:
After doing a manual edit in a radrichtextbox and making it do a single line entry rather than a huge gap - I exported the contents BACK OUT as a HTML file and took a peek at the coding.

There were several CSS entries with a paragraph between each table.
It all boiled down to this,
a css entry:

.psmall { line-height: 1.15; 



then at the end of each table putting this:

</table><p class="psmall "><span> </span></p>


and theres just a small gap now between tables.
Member 12561559 12-Dec-22 8:25am View    
Managed to do testing with mailkit to, using the authentication saslmechanismoauth2 statement above, so im definitely getting a auth token back successfully, just an issue with permissions to send email - so I think thats at the Office365 Outlook end. Thanks Richard - you were most helpful - top fella
Member 12561559 12-Dec-22 3:33am View    
How will I know if its set to read-only ? Ive had a guy who has access to the office365 website and he's put in smtp.send and mail.write as scopes, but he's not a manager of email, he's had the job dumped on him, so we're trying to figure it out together but its like the blind leading the blind, even following examples given by chilkat and other websites regarding setting up.
Member 12561559 6-Dec-22 10:55am View    
That was a nightmare but I figured it out - your code helped find the vb.net equivalent - so I will post this as the solution, people can then just re-use it to get the authtoken, then use whatever email component they use, passing the json authtoken as needed. Thanks Richard - took me a while (all day) but got there in the end - or seems it, I have managed to get the authtoken, I just have to pop it into my main sub's that performs outgoing mail using the Chilkat Software component which will just (supposed) to use the Authtoken json string and do its magic. Cheers