使用python在SNS发布消息中发送超链接

时间:2017-02-22 20:40:39

标签: python amazon-sns boto3

我需要使用python通过sns将超链接发送到存储在变量中的url。使用我当前的代码,我可以发送整个链接但不发送超链接。任何人都可以建议如何通过sns发送电子邮件中的超链接的解决方案。

s3Client=boto3.client('s3')
    object=s3Client.generate_presigned_url('get_object',Params=    {'Bucket':'eds-illuminati-dev','Key': f})


response = client.publish(
    TargetArn='XXXXXX',
    Subject="Mismatch in Fees Calculated",
   # Message="""Click on the link to download the file\n"{0}" \n>link"""     .format(object)
     Message='<a href={0}>link</a>' .format(object)
    )
print("response={}".format(response))

0 个答案:

没有答案